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