Package com.sun.faces.renderkit
Enum AttributeManager.Key
- java.lang.Object
-
- java.lang.Enum<AttributeManager.Key>
-
- com.sun.faces.renderkit.AttributeManager.Key
-
- All Implemented Interfaces:
Serializable,Comparable<AttributeManager.Key>
- Enclosing class:
- AttributeManager
public static enum AttributeManager.Key extends Enum<AttributeManager.Key>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeManager.KeyvalueOf(String name)Returns the enum constant of this type with the specified name.static AttributeManager.Key[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMANDBUTTON
public static final AttributeManager.Key COMMANDBUTTON
-
COMMANDLINK
public static final AttributeManager.Key COMMANDLINK
-
DATATABLE
public static final AttributeManager.Key DATATABLE
-
FORMFORM
public static final AttributeManager.Key FORMFORM
-
GRAPHICIMAGE
public static final AttributeManager.Key GRAPHICIMAGE
-
INPUTFILE
public static final AttributeManager.Key INPUTFILE
-
INPUTSECRET
public static final AttributeManager.Key INPUTSECRET
-
INPUTTEXT
public static final AttributeManager.Key INPUTTEXT
-
INPUTTEXTAREA
public static final AttributeManager.Key INPUTTEXTAREA
-
MESSAGEMESSAGE
public static final AttributeManager.Key MESSAGEMESSAGE
-
MESSAGESMESSAGES
public static final AttributeManager.Key MESSAGESMESSAGES
-
OUTCOMETARGETBUTTON
public static final AttributeManager.Key OUTCOMETARGETBUTTON
-
OUTCOMETARGETLINK
public static final AttributeManager.Key OUTCOMETARGETLINK
-
OUTPUTFORMAT
public static final AttributeManager.Key OUTPUTFORMAT
-
OUTPUTLABEL
public static final AttributeManager.Key OUTPUTLABEL
-
OUTPUTLINK
public static final AttributeManager.Key OUTPUTLINK
-
OUTPUTTEXT
public static final AttributeManager.Key OUTPUTTEXT
-
PANELGRID
public static final AttributeManager.Key PANELGRID
-
PANELGROUP
public static final AttributeManager.Key PANELGROUP
-
SELECTBOOLEANCHECKBOX
public static final AttributeManager.Key SELECTBOOLEANCHECKBOX
-
SELECTMANYCHECKBOX
public static final AttributeManager.Key SELECTMANYCHECKBOX
-
SELECTMANYLISTBOX
public static final AttributeManager.Key SELECTMANYLISTBOX
-
SELECTMANYMENU
public static final AttributeManager.Key SELECTMANYMENU
-
SELECTONELISTBOX
public static final AttributeManager.Key SELECTONELISTBOX
-
SELECTONEMENU
public static final AttributeManager.Key SELECTONEMENU
-
SELECTONERADIO
public static final AttributeManager.Key SELECTONERADIO
-
OUTPUTBODY
public static final AttributeManager.Key OUTPUTBODY
-
OUTPUTDOCTYPE
public static final AttributeManager.Key OUTPUTDOCTYPE
-
OUTPUTHEAD
public static final AttributeManager.Key OUTPUTHEAD
-
-
Method Detail
-
values
public static AttributeManager.Key[] 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 (AttributeManager.Key c : AttributeManager.Key.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeManager.Key valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-