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