public enum EnumImageType extends java.lang.Enum<EnumImageType>
| Modifier and Type | Class and Description |
|---|---|
static class |
EnumImageType.Value1
The Enum Value1.
|
static class |
EnumImageType.Value2
The Enum Value2.
|
static class |
EnumImageType.Value3
The Enum Value3.
|
static class |
EnumImageType.Value4
The Enum Value4.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the value of this enum.
|
static EnumImageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static EnumImageType[] values()
for (EnumImageType c : EnumImageType.values()) System.out.println(c);
public static EnumImageType 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 java.lang.String getValue()