Package jakarta.faces.component.html
Enum HtmlForm.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlForm.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlForm.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlForm.PropertyKeys>
 - Enclosing class:
- HtmlForm
 
 protected static enum HtmlForm.PropertyKeys extends Enum<HtmlForm.PropertyKeys> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description acceptacceptcharsetdirenctypelangonclickondblclickonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponresetonsubmitrolestylestyleClasstargettitle
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HtmlForm.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlForm.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
acceptpublic static final HtmlForm.PropertyKeys accept 
 - 
acceptcharsetpublic static final HtmlForm.PropertyKeys acceptcharset 
 - 
enctypepublic static final HtmlForm.PropertyKeys enctype 
 - 
onresetpublic static final HtmlForm.PropertyKeys onreset 
 - 
onsubmitpublic static final HtmlForm.PropertyKeys onsubmit 
 - 
targetpublic static final HtmlForm.PropertyKeys target 
 - 
onclickpublic static final HtmlForm.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlForm.PropertyKeys ondblclick 
 - 
onkeydownpublic static final HtmlForm.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlForm.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlForm.PropertyKeys onkeyup 
 - 
onmousedownpublic static final HtmlForm.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlForm.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlForm.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlForm.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlForm.PropertyKeys onmouseup 
 - 
stylepublic static final HtmlForm.PropertyKeys style 
 - 
styleClasspublic static final HtmlForm.PropertyKeys styleClass 
 - 
rolepublic static final HtmlForm.PropertyKeys role 
 - 
dirpublic static final HtmlForm.PropertyKeys dir 
 - 
langpublic static final HtmlForm.PropertyKeys lang 
 - 
titlepublic static final HtmlForm.PropertyKeys title 
 
- 
 - 
Method Detail- 
valuespublic static HtmlForm.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 (HtmlForm.PropertyKeys c : HtmlForm.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlForm.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
 
 
- 
 
-