public enum MetadataType extends java.lang.Enum<MetadataType>
Enum Constant and Description |
---|
COMMENT |
EXIF |
ICC_PROFILE |
IMAGE |
IPTC |
JPG_ADOBE |
JPG_DUCKY |
JPG_JFIF |
PHOTOSHOP_DDB |
PHOTOSHOP_IRB |
PNG_TEXTUAL |
PNG_TIME |
XMP |
Modifier and Type | Method and Description |
---|---|
static MetadataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetadataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataType EXIF
public static final MetadataType IPTC
public static final MetadataType ICC_PROFILE
public static final MetadataType XMP
public static final MetadataType PHOTOSHOP_IRB
public static final MetadataType PHOTOSHOP_DDB
public static final MetadataType COMMENT
public static final MetadataType IMAGE
public static final MetadataType JPG_JFIF
public static final MetadataType JPG_DUCKY
public static final MetadataType JPG_ADOBE
public static final MetadataType PNG_TEXTUAL
public static final MetadataType PNG_TIME
public static MetadataType[] values()
for (MetadataType c : MetadataType.values()) System.out.println(c);
public static MetadataType 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