Package jakarta.faces.component.html
Enum HtmlInputText.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlInputText.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlInputText.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlInputText.PropertyKeys>
 - Enclosing class:
- HtmlInputText
 
 protected static enum HtmlInputText.PropertyKeys extends Enum<HtmlInputText.PropertyKeys> The property keys.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeyaltautocompletedirdisabledlabellangmaxlengthonbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectreadonlyrolesizestylestyleClasstabindextitletype
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static HtmlInputText.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlInputText.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
accesskeypublic static final HtmlInputText.PropertyKeys accesskey 
 - 
altpublic static final HtmlInputText.PropertyKeys alt 
 - 
autocompletepublic static final HtmlInputText.PropertyKeys autocomplete 
 - 
dirpublic static final HtmlInputText.PropertyKeys dir 
 - 
disabledpublic static final HtmlInputText.PropertyKeys disabled 
 - 
labelpublic static final HtmlInputText.PropertyKeys label 
 - 
langpublic static final HtmlInputText.PropertyKeys lang 
 - 
maxlengthpublic static final HtmlInputText.PropertyKeys maxlength 
 - 
onblurpublic static final HtmlInputText.PropertyKeys onblur 
 - 
onchangepublic static final HtmlInputText.PropertyKeys onchange 
 - 
onclickpublic static final HtmlInputText.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlInputText.PropertyKeys ondblclick 
 - 
onfocuspublic static final HtmlInputText.PropertyKeys onfocus 
 - 
onkeydownpublic static final HtmlInputText.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlInputText.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlInputText.PropertyKeys onkeyup 
 - 
onmousedownpublic static final HtmlInputText.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlInputText.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlInputText.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlInputText.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlInputText.PropertyKeys onmouseup 
 - 
onselectpublic static final HtmlInputText.PropertyKeys onselect 
 - 
readonlypublic static final HtmlInputText.PropertyKeys readonly 
 - 
rolepublic static final HtmlInputText.PropertyKeys role 
 - 
sizepublic static final HtmlInputText.PropertyKeys size 
 - 
stylepublic static final HtmlInputText.PropertyKeys style 
 - 
styleClasspublic static final HtmlInputText.PropertyKeys styleClass 
 - 
tabindexpublic static final HtmlInputText.PropertyKeys tabindex 
 - 
titlepublic static final HtmlInputText.PropertyKeys title 
 - 
typepublic static final HtmlInputText.PropertyKeys type 
 
- 
 - 
Method Detail- 
valuespublic static HtmlInputText.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 (HtmlInputText.PropertyKeys c : HtmlInputText.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlInputText.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<HtmlInputText.PropertyKeys>
 
 
- 
 
-