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