public enum ElementState extends Enum<ElementState>
| Enum Constant and Description |
|---|
DISPLAYED |
EXISTS_IN_ANY_STATE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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 DISPLAYED
public static final ElementState EXISTS_IN_ANY_STATE
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 nullpublic String toString()
toString in class Enum<ElementState>Copyright © 2020. All rights reserved.