enum EStringSelectionState extends Enum<EStringSelectionState>
| Enum Constant and Description |
|---|
ACTIVE
Designate a String as active
|
DISABLE
Designate a String that is not active and cannot be selected
|
INACTIVE
Designate as String that is not active but can be selected
|
| Modifier and Type | Method and Description |
|---|---|
static EStringSelectionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EStringSelectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EStringSelectionState ACTIVE
public static final EStringSelectionState INACTIVE
public static final EStringSelectionState DISABLE
public static EStringSelectionState[] values()
for (EStringSelectionState c : EStringSelectionState.values()) System.out.println(c);
public static EStringSelectionState 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 © 2011-2016 Sahits GmbH. All Rights Reserved.