Package jakarta.faces.component.html
Enum HtmlBody.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlBody.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlBody.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlBody.PropertyKeys>
 - Enclosing class:
- HtmlBody
 
 protected static enum HtmlBody.PropertyKeys extends Enum<HtmlBody.PropertyKeys> The property keys.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description dirlangonclickondblclickonkeydownonkeypressonkeyuponloadonmousedownonmousemoveonmouseoutonmouseoveronmouseuponunloadrolestylestyleClasstitlexmlns
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static HtmlBody.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlBody.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
dirpublic static final HtmlBody.PropertyKeys dir 
 - 
langpublic static final HtmlBody.PropertyKeys lang 
 - 
onclickpublic static final HtmlBody.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlBody.PropertyKeys ondblclick 
 - 
onkeydownpublic static final HtmlBody.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlBody.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlBody.PropertyKeys onkeyup 
 - 
onloadpublic static final HtmlBody.PropertyKeys onload 
 - 
onmousedownpublic static final HtmlBody.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlBody.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlBody.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlBody.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlBody.PropertyKeys onmouseup 
 - 
onunloadpublic static final HtmlBody.PropertyKeys onunload 
 - 
rolepublic static final HtmlBody.PropertyKeys role 
 - 
stylepublic static final HtmlBody.PropertyKeys style 
 - 
styleClasspublic static final HtmlBody.PropertyKeys styleClass 
 - 
titlepublic static final HtmlBody.PropertyKeys title 
 - 
xmlnspublic static final HtmlBody.PropertyKeys xmlns 
 
- 
 - 
Method Detail- 
valuespublic static HtmlBody.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 (HtmlBody.PropertyKeys c : HtmlBody.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlBody.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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<HtmlBody.PropertyKeys>
 
 
- 
 
-