Enum ElementState
- java.lang.Object
-
- java.lang.Enum<ElementState>
-
- org.alfresco.utility.web.renderer.ElementState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ElementState>
public enum ElementState extends java.lang.Enum<ElementState>
Represents the element State.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLICKABLEDELETED_FROM_DOMINVISIBLEINVISIBLE_WITH_TEXTPAGE_LOADEDPRESENTVISIBLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RenderertoInstance()static ElementStatevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
DELETED_FROM_DOM
public static final ElementState DELETED_FROM_DOM
-
VISIBLE
public static final ElementState VISIBLE
-
INVISIBLE
public static final ElementState INVISIBLE
-
CLICKABLE
public static final ElementState CLICKABLE
-
PRESENT
public static final ElementState PRESENT
-
INVISIBLE_WITH_TEXT
public static final ElementState INVISIBLE_WITH_TEXT
-
PAGE_LOADED
public static final ElementState PAGE_LOADED
-
-
Method Detail
-
values
public static ElementState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ElementState c : ElementState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElementState valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toInstance
public Renderer toInstance()
-
-