public static enum GlobalVariable.PROPERTY extends Enum<GlobalVariable.PROPERTY>
| Modifier and Type | Method and Description |
|---|---|
static GlobalVariable.PROPERTY |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GlobalVariable.PROPERTY[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlobalVariable.PROPERTY name
public static final GlobalVariable.PROPERTY value
public static GlobalVariable.PROPERTY[] values()
for (GlobalVariable.PROPERTY c : GlobalVariable.PROPERTY.values()) System.out.println(c);
public static GlobalVariable.PROPERTY 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 nullCopyright © 2017. All rights reserved.