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> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeyaltautocompletedirdisabledlabellangmaxlengthonbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectreadonlyrolesizestylestyleClasstabindextitletype
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description 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- 
maxlengthpublic static final HtmlInputText.PropertyKeys maxlength 
 - 
sizepublic static final HtmlInputText.PropertyKeys size 
 - 
autocompletepublic static final HtmlInputText.PropertyKeys autocomplete 
 - 
typepublic static final HtmlInputText.PropertyKeys type 
 - 
disabledpublic static final HtmlInputText.PropertyKeys disabled 
 - 
readonlypublic static final HtmlInputText.PropertyKeys readonly 
 - 
onclickpublic static final HtmlInputText.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlInputText.PropertyKeys ondblclick 
 - 
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 
 - 
dirpublic static final HtmlInputText.PropertyKeys dir 
 - 
langpublic static final HtmlInputText.PropertyKeys lang 
 - 
titlepublic static final HtmlInputText.PropertyKeys title 
 - 
accesskeypublic static final HtmlInputText.PropertyKeys accesskey 
 - 
onselectpublic static final HtmlInputText.PropertyKeys onselect 
 - 
stylepublic static final HtmlInputText.PropertyKeys style 
 - 
styleClasspublic static final HtmlInputText.PropertyKeys styleClass 
 - 
rolepublic static final HtmlInputText.PropertyKeys role 
 - 
labelpublic static final HtmlInputText.PropertyKeys label 
 - 
altpublic static final HtmlInputText.PropertyKeys alt 
 - 
onblurpublic static final HtmlInputText.PropertyKeys onblur 
 - 
onfocuspublic static final HtmlInputText.PropertyKeys onfocus 
 - 
tabindexpublic static final HtmlInputText.PropertyKeys tabindex 
 - 
onchangepublic static final HtmlInputText.PropertyKeys onchange 
 
- 
 - 
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
 
 
- 
 
-