public enum Jpeg2000CodecEnum extends Enum<Jpeg2000CodecEnum>
Represents JPEG2000 image type
Enum Constant and Description |
---|
J2K
The j2k codec format
|
Jp2
The JP2 codec format
|
Jpt
The JPT codec format (Not supported)
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static Jpeg2000CodecEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Jpeg2000CodecEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Jpeg2000CodecEnum J2K
The j2k codec format
public static final Jpeg2000CodecEnum Jp2
The JP2 codec format
public static final Jpeg2000CodecEnum Jpt
The JPT codec format (Not supported)
public static Jpeg2000CodecEnum[] values()
for (Jpeg2000CodecEnum c : Jpeg2000CodecEnum.values()) System.out.println(c);
public static Jpeg2000CodecEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getType()