public enum GraphicType extends Enum<GraphicType>
| Enum Constant and Description |
|---|
BMP
Bitmap image.
|
NA
No image data.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Returns the integer representation of the GraphicType enumeration member.
|
static GraphicType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphicType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicType BMP
public static final GraphicType NA
public static GraphicType[] values()
for (GraphicType c : GraphicType.values()) System.out.println(c);
public static GraphicType 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 getValue()
© 2016 ZIH Corp. All Rights Reserved.