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