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> Properties used by this component
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeycolsdirdisabledlabellangonbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectreadonlyrolerowsstylestyleClasstabindextitle
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()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- 
accesskeypublic static final HtmlInputTextarea.PropertyKeys accesskey 
 - 
colspublic static final HtmlInputTextarea.PropertyKeys cols 
 - 
dirpublic static final HtmlInputTextarea.PropertyKeys dir 
 - 
disabledpublic static final HtmlInputTextarea.PropertyKeys disabled 
 - 
labelpublic static final HtmlInputTextarea.PropertyKeys label 
 - 
langpublic static final HtmlInputTextarea.PropertyKeys lang 
 - 
onblurpublic static final HtmlInputTextarea.PropertyKeys onblur 
 - 
onchangepublic static final HtmlInputTextarea.PropertyKeys onchange 
 - 
onclickpublic static final HtmlInputTextarea.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlInputTextarea.PropertyKeys ondblclick 
 - 
onfocuspublic static final HtmlInputTextarea.PropertyKeys onfocus 
 - 
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 
 - 
onselectpublic static final HtmlInputTextarea.PropertyKeys onselect 
 - 
readonlypublic static final HtmlInputTextarea.PropertyKeys readonly 
 - 
rolepublic static final HtmlInputTextarea.PropertyKeys role 
 - 
rowspublic static final HtmlInputTextarea.PropertyKeys rows 
 - 
stylepublic static final HtmlInputTextarea.PropertyKeys style 
 - 
styleClasspublic static final HtmlInputTextarea.PropertyKeys styleClass 
 - 
tabindexpublic static final HtmlInputTextarea.PropertyKeys tabindex 
 - 
titlepublic static final HtmlInputTextarea.PropertyKeys title 
 
- 
 - 
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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<HtmlInputTextarea.PropertyKeys>
 
 
- 
 
-