org.apache.myfaces.view.facelets
Enum ComponentState
java.lang.Object
java.lang.Enum<ComponentState>
org.apache.myfaces.view.facelets.ComponentState
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ComponentState>
public enum ComponentState
- extends java.lang.Enum<ComponentState>
Enum used inside the key DefaultFaceletsStateManagementStrategy.COMPONENT_ADDED_AFTER_BUILD_VIEW
on the component attribute map to indicate if the component should be
add, removed and add o it was already added to DefaultFaceletsStateManagementStrategy.CLIENTIDS_ADDED
and DefaultFaceletsStateManagementStrategy.CLIENTIDS_REMOVED
- Since:
- 2.0
- Version:
- $Revision: 793245 $ $Date: 2009-07-11 18:50:53 -0500 (Sat, 11 Jul 2009) $
- Author:
- Leonardo Uribe (latest modification by $Author: lu4242 $)
Method Summary |
static ComponentState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ComponentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ADD
public static final ComponentState ADD
REMOVE_ADD
public static final ComponentState REMOVE_ADD
ADDED
public static final ComponentState ADDED
values
public static ComponentState[] 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 (ComponentState c : ComponentState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ComponentState 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 name
java.lang.NullPointerException
- if the argument is null
Copyright © 2011 The Apache Software Foundation. All Rights Reserved.