public static enum ExiftoolSupport.Format extends java.lang.Enum<ExiftoolSupport.Format>
Tag
values
can be returned in: numeric or human-readable text.
ExifTool, via the -n
command line arg, is capable of
returning most values in their raw numeric form (e.g.
Aperture="2.8010323841") as well as a more human-readable/friendly format
(e.g. Aperture="2.8").
Enum Constant and Description |
---|
HUMAN_READABLE |
NUMERIC |
Modifier and Type | Method and Description |
---|---|
static ExiftoolSupport.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExiftoolSupport.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExiftoolSupport.Format NUMERIC
public static final ExiftoolSupport.Format HUMAN_READABLE
public static ExiftoolSupport.Format[] values()
for (ExiftoolSupport.Format c : ExiftoolSupport.Format.values()) System.out.println(c);
public static ExiftoolSupport.Format valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null