public static enum Plugin.MainType extends Enum<Plugin.MainType>
Enum Constant and Description |
---|
ANALYZE |
CONVERT |
EXPORT |
IMPORT |
INTENSITY |
OTHER |
Modifier and Type | Method and Description |
---|---|
static Plugin.MainType |
fromValue(int value) |
int |
getValue() |
String |
toString() |
static Plugin.MainType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin.MainType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin.MainType IMPORT
public static final Plugin.MainType EXPORT
public static final Plugin.MainType INTENSITY
public static final Plugin.MainType ANALYZE
public static final Plugin.MainType OTHER
public static final Plugin.MainType CONVERT
public static Plugin.MainType[] values()
for (Plugin.MainType c : Plugin.MainType.values()) System.out.println(c);
public static Plugin.MainType 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 static Plugin.MainType fromValue(int value)
public int getValue()
public String toString()
toString
in class Enum<Plugin.MainType>