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> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description dirlangonclickondblclickonkeydownonkeypressonkeyuponloadonmousedownonmousemoveonmouseoutonmouseoveronmouseuponunloadrolestylestyleClasstitlexmlns
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description 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- 
onloadpublic static final HtmlBody.PropertyKeys onload 
 - 
onunloadpublic static final HtmlBody.PropertyKeys onunload 
 - 
xmlnspublic static final HtmlBody.PropertyKeys xmlns 
 - 
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 
 - 
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 
 - 
stylepublic static final HtmlBody.PropertyKeys style 
 - 
styleClasspublic static final HtmlBody.PropertyKeys styleClass 
 - 
rolepublic static final HtmlBody.PropertyKeys role 
 - 
dirpublic static final HtmlBody.PropertyKeys dir 
 - 
langpublic static final HtmlBody.PropertyKeys lang 
 - 
titlepublic static final HtmlBody.PropertyKeys title 
 
- 
 - 
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
 
 
- 
 
-