Package jakarta.faces.component.html
Enum HtmlMessage.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlMessage.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlMessage.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlMessage.PropertyKeys>
 - Enclosing class:
- HtmlMessage
 
 protected static enum HtmlMessage.PropertyKeys extends Enum<HtmlMessage.PropertyKeys> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description direrrorClasserrorStylefatalClassfatalStyleinfoClassinfoStylelangrolestylestyleClasstitletooltipwarnClasswarnStyle
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HtmlMessage.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlMessage.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
stylepublic static final HtmlMessage.PropertyKeys style 
 - 
styleClasspublic static final HtmlMessage.PropertyKeys styleClass 
 - 
errorClasspublic static final HtmlMessage.PropertyKeys errorClass 
 - 
errorStylepublic static final HtmlMessage.PropertyKeys errorStyle 
 - 
fatalClasspublic static final HtmlMessage.PropertyKeys fatalClass 
 - 
fatalStylepublic static final HtmlMessage.PropertyKeys fatalStyle 
 - 
infoClasspublic static final HtmlMessage.PropertyKeys infoClass 
 - 
infoStylepublic static final HtmlMessage.PropertyKeys infoStyle 
 - 
tooltippublic static final HtmlMessage.PropertyKeys tooltip 
 - 
warnClasspublic static final HtmlMessage.PropertyKeys warnClass 
 - 
warnStylepublic static final HtmlMessage.PropertyKeys warnStyle 
 - 
rolepublic static final HtmlMessage.PropertyKeys role 
 - 
dirpublic static final HtmlMessage.PropertyKeys dir 
 - 
langpublic static final HtmlMessage.PropertyKeys lang 
 - 
titlepublic static final HtmlMessage.PropertyKeys title 
 
- 
 - 
Method Detail- 
valuespublic static HtmlMessage.PropertyKeys[] 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 (HtmlMessage.PropertyKeys c : HtmlMessage.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlMessage.PropertyKeys 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-