Uses of Interface
com.thebuzzmedia.exiftool.process.OutputHandler
-
-
Uses of OutputHandler in com.thebuzzmedia.exiftool
Methods in com.thebuzzmedia.exiftool with parameters of type OutputHandler Modifier and Type Method Description void
ExecutionStrategy. execute(CommandExecutor executor, String exifTool, List<String> arguments, OutputHandler handler)
Execute exiftool command. -
Uses of OutputHandler in com.thebuzzmedia.exiftool.core.handlers
Subinterfaces of OutputHandler in com.thebuzzmedia.exiftool.core.handlers Modifier and Type Interface Description interface
TagHandler
Classes in com.thebuzzmedia.exiftool.core.handlers that implement OutputHandler Modifier and Type Class Description class
AllTagHandler
Read all tags line by line.class
BaseTagHandler
Read tags line by line.class
StandardTagHandler
Read specified input tags line by line.class
StopHandler
Check if line means it is the end of the stream. -
Uses of OutputHandler in com.thebuzzmedia.exiftool.core.strategies
Methods in com.thebuzzmedia.exiftool.core.strategies with parameters of type OutputHandler Modifier and Type Method Description void
DefaultStrategy. execute(CommandExecutor executor, String exifTool, List<String> arguments, OutputHandler handler)
void
PoolStrategy. execute(CommandExecutor executor, String exifTool, List<String> arguments, OutputHandler handler)
void
StayOpenStrategy. execute(CommandExecutor executor, String exifTool, List<String> arguments, OutputHandler handler)
-
Uses of OutputHandler in com.thebuzzmedia.exiftool.process
Methods in com.thebuzzmedia.exiftool.process with parameters of type OutputHandler Modifier and Type Method Description CommandResult
CommandExecutor. execute(Command command, OutputHandler handler)
Execute command and build the result.String
CommandProcess. read(OutputHandler handler)
Read output until: A null line is read. Handler returns false when line is read. Since command process will not be closed, a simple string is returned (an exit status cannot be computed). -
Uses of OutputHandler in com.thebuzzmedia.exiftool.process.executor
Methods in com.thebuzzmedia.exiftool.process.executor with parameters of type OutputHandler Modifier and Type Method Description CommandResult
DefaultCommandExecutor. execute(Command command, OutputHandler handler)
String
DefaultCommandProcess. read(OutputHandler handler)
-