Package com.drew.metadata.mp4.media
Enum Mp4UuidBoxHandler.UuidType
- java.lang.Object
-
- java.lang.Enum<Mp4UuidBoxHandler.UuidType>
-
- com.drew.metadata.mp4.media.Mp4UuidBoxHandler.UuidType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Mp4UuidBoxHandler.UuidType>
- Enclosing class:
- Mp4UuidBoxHandler
private static enum Mp4UuidBoxHandler.UuidType extends java.lang.Enum<Mp4UuidBoxHandler.UuidType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ExifGeoJp2GeoTiffBoxGeoJp2WorldFileBoxIptcIimPhotoshopImageResourcesPiffProtectionSystemSpecificHeaderBoxPiffSampleEncryptionBoxPiffTrackEncryptionBoxUnknownXmp
-
Constructor Summary
Constructors Modifier Constructor Description privateUuidType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Mp4UuidBoxHandler.UuidTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Mp4UuidBoxHandler.UuidType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final Mp4UuidBoxHandler.UuidType Unknown
-
Exif
public static final Mp4UuidBoxHandler.UuidType Exif
-
PhotoshopImageResources
public static final Mp4UuidBoxHandler.UuidType PhotoshopImageResources
-
IptcIim
public static final Mp4UuidBoxHandler.UuidType IptcIim
-
PiffTrackEncryptionBox
public static final Mp4UuidBoxHandler.UuidType PiffTrackEncryptionBox
-
GeoJp2WorldFileBox
public static final Mp4UuidBoxHandler.UuidType GeoJp2WorldFileBox
-
PiffSampleEncryptionBox
public static final Mp4UuidBoxHandler.UuidType PiffSampleEncryptionBox
-
GeoJp2GeoTiffBox
public static final Mp4UuidBoxHandler.UuidType GeoJp2GeoTiffBox
-
Xmp
public static final Mp4UuidBoxHandler.UuidType Xmp
-
PiffProtectionSystemSpecificHeaderBox
public static final Mp4UuidBoxHandler.UuidType PiffProtectionSystemSpecificHeaderBox
-
-
Method Detail
-
values
public static Mp4UuidBoxHandler.UuidType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Mp4UuidBoxHandler.UuidType c : Mp4UuidBoxHandler.UuidType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Mp4UuidBoxHandler.UuidType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-