Package jakarta.faces.component.html
Enum HtmlInputSecret.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlInputSecret.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlInputSecret.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlInputSecret.PropertyKeys>
 - Enclosing class:
- HtmlInputSecret
 
 protected static enum HtmlInputSecret.PropertyKeys extends Enum<HtmlInputSecret.PropertyKeys> Properties used by this component
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeyaltDeprecated, for removal: This API element is subject to removal in a future version.autocompletedirdisabledlabellangmaxlengthonbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectreadonlyredisplayrolesizestylestyleClasstabindextitle
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static HtmlInputSecret.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlInputSecret.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
accesskeypublic static final HtmlInputSecret.PropertyKeys accesskey 
 - 
autocompletepublic static final HtmlInputSecret.PropertyKeys autocomplete 
 - 
dirpublic static final HtmlInputSecret.PropertyKeys dir 
 - 
disabledpublic static final HtmlInputSecret.PropertyKeys disabled 
 - 
labelpublic static final HtmlInputSecret.PropertyKeys label 
 - 
langpublic static final HtmlInputSecret.PropertyKeys lang 
 - 
maxlengthpublic static final HtmlInputSecret.PropertyKeys maxlength 
 - 
onblurpublic static final HtmlInputSecret.PropertyKeys onblur 
 - 
onchangepublic static final HtmlInputSecret.PropertyKeys onchange 
 - 
onclickpublic static final HtmlInputSecret.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlInputSecret.PropertyKeys ondblclick 
 - 
onfocuspublic static final HtmlInputSecret.PropertyKeys onfocus 
 - 
onkeydownpublic static final HtmlInputSecret.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlInputSecret.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlInputSecret.PropertyKeys onkeyup 
 - 
onmousedownpublic static final HtmlInputSecret.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlInputSecret.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlInputSecret.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlInputSecret.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlInputSecret.PropertyKeys onmouseup 
 - 
onselectpublic static final HtmlInputSecret.PropertyKeys onselect 
 - 
readonlypublic static final HtmlInputSecret.PropertyKeys readonly 
 - 
redisplaypublic static final HtmlInputSecret.PropertyKeys redisplay 
 - 
rolepublic static final HtmlInputSecret.PropertyKeys role 
 - 
sizepublic static final HtmlInputSecret.PropertyKeys size 
 - 
stylepublic static final HtmlInputSecret.PropertyKeys style 
 - 
styleClasspublic static final HtmlInputSecret.PropertyKeys styleClass 
 - 
tabindexpublic static final HtmlInputSecret.PropertyKeys tabindex 
 - 
titlepublic static final HtmlInputSecret.PropertyKeys title 
 - 
alt@Deprecated(since="4.0", forRemoval=true) public static final HtmlInputSecret.PropertyKeys alt Deprecated, for removal: This API element is subject to removal in a future version.
 
- 
 - 
Method Detail- 
valuespublic static HtmlInputSecret.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 (HtmlInputSecret.PropertyKeys c : HtmlInputSecret.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlInputSecret.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<HtmlInputSecret.PropertyKeys>
 
 
- 
 
-