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