public enum ImageFormat extends java.lang.Enum<ImageFormat>
ValuesPackage.getImageFormat()
Enum Constant and Description |
---|
DCM
The 'DCM' literal object.
|
DZI
The 'DZI' literal object.
|
GOOGLE_MAP
The 'GOOGLE MAP' literal object.
|
IIP
The 'IIP' literal object.
|
JPEG
The 'JPEG' literal object.
|
NIFTI
The 'NIFTI' literal object.
|
PNG
The 'PNG' literal object.
|
TIFF
The 'TIFF' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DCM_VALUE
The 'DCM' literal value.
|
static int |
DZI_VALUE
The 'DZI' literal value.
|
static int |
GOOGLE_MAP_VALUE
The 'GOOGLE MAP' literal value.
|
static int |
IIP_VALUE
The 'IIP' literal value.
|
static int |
JPEG_VALUE
The 'JPEG' literal value.
|
private java.lang.String |
literal |
private java.lang.String |
name |
static int |
NIFTI_VALUE
The 'NIFTI' literal value.
|
static int |
PNG_VALUE
The 'PNG' literal value.
|
static int |
TIFF_VALUE
The 'TIFF' literal value.
|
private int |
value |
static java.util.List<ImageFormat> |
VALUES
A public read-only list of all the 'Image Format' enumerators.
|
private static ImageFormat[] |
VALUES_ARRAY
An array of all the 'Image Format' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static ImageFormat |
get(int value)
Returns the 'Image Format' literal with the specified integer value.
|
static ImageFormat |
get(java.lang.String literal)
Returns the 'Image Format' literal with the specified literal value.
|
static ImageFormat |
getByName(java.lang.String name)
Returns the 'Image Format' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static ImageFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFormat PNG
PNG_VALUE
public static final ImageFormat JPEG
JPEG_VALUE
public static final ImageFormat IIP
IIP_VALUE
public static final ImageFormat DCM
DCM_VALUE
public static final ImageFormat NIFTI
NIFTI_VALUE
public static final ImageFormat TIFF
TIFF_VALUE
public static final ImageFormat DZI
DZI_VALUE
public static final ImageFormat GOOGLE_MAP
GOOGLE_MAP_VALUE
public static final int PNG_VALUE
If the meaning of 'PNG' literal object isn't clear, there really should be more of a description here...
PNG
,
Constant Field Valuespublic static final int JPEG_VALUE
If the meaning of 'JPEG' literal object isn't clear, there really should be more of a description here...
JPEG
,
Constant Field Valuespublic static final int IIP_VALUE
If the meaning of 'IIP' literal object isn't clear, there really should be more of a description here...
IIP
,
Constant Field Valuespublic static final int DCM_VALUE
If the meaning of 'DCM' literal object isn't clear, there really should be more of a description here...
DCM
,
Constant Field Valuespublic static final int NIFTI_VALUE
If the meaning of 'NIFTI' literal object isn't clear, there really should be more of a description here...
NIFTI
,
Constant Field Valuespublic static final int TIFF_VALUE
If the meaning of 'TIFF' literal object isn't clear, there really should be more of a description here...
TIFF
,
Constant Field Valuespublic static final int DZI_VALUE
If the meaning of 'DZI' literal object isn't clear, there really should be more of a description here...
DZI
,
Constant Field Valuespublic static final int GOOGLE_MAP_VALUE
If the meaning of 'GOOGLE MAP' literal object isn't clear, there really should be more of a description here...
GOOGLE_MAP
,
Constant Field Valuesprivate static final ImageFormat[] VALUES_ARRAY
public static final java.util.List<ImageFormat> VALUES
private final int value
private final java.lang.String name
private final java.lang.String literal
public static ImageFormat[] values()
for (ImageFormat c : ImageFormat.values()) System.out.println(c);
public static ImageFormat 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 nullpublic static ImageFormat get(java.lang.String literal)
literal
- the literal.null
.public static ImageFormat getByName(java.lang.String name)
name
- the name.null
.public static ImageFormat get(int value)
value
- the integer value.null
.public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString
in class java.lang.Enum<ImageFormat>