public enum ElementState extends Enum<ElementState>
RenderElement's State.| Enum Constant and Description |
|---|
CLICKABLE |
DELETE_FROM_DOM |
INVISIBLE |
INVISIBLE_WITH_TEXT |
PRESENT |
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 INVISIBLE
public static final ElementState INVISIBLE_WITH_TEXT
public static final ElementState CLICKABLE
public static final ElementState DELETE_FROM_DOM
public static final ElementState PRESENT
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 © 2015. All rights reserved.