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> Properties used by this component
- 
- 
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 Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()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- 
acceptpublic static final HtmlInputFile.PropertyKeys accept 
 - 
accesskeypublic static final HtmlInputFile.PropertyKeys accesskey 
 - 
dirpublic static final HtmlInputFile.PropertyKeys dir 
 - 
disabledpublic static final HtmlInputFile.PropertyKeys disabled 
 - 
labelpublic static final HtmlInputFile.PropertyKeys label 
 - 
langpublic static final HtmlInputFile.PropertyKeys lang 
 - 
multiplepublic static final HtmlInputFile.PropertyKeys multiple 
 - 
onblurpublic static final HtmlInputFile.PropertyKeys onblur 
 - 
onchangepublic static final HtmlInputFile.PropertyKeys onchange 
 - 
onclickpublic static final HtmlInputFile.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlInputFile.PropertyKeys ondblclick 
 - 
onfocuspublic static final HtmlInputFile.PropertyKeys onfocus 
 - 
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 
 - 
onselectpublic static final HtmlInputFile.PropertyKeys onselect 
 - 
rolepublic static final HtmlInputFile.PropertyKeys role 
 - 
stylepublic static final HtmlInputFile.PropertyKeys style 
 - 
styleClasspublic static final HtmlInputFile.PropertyKeys styleClass 
 - 
tabindexpublic static final HtmlInputFile.PropertyKeys tabindex 
 - 
titlepublic static final HtmlInputFile.PropertyKeys title 
 - 
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.
 - 
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.
 - 
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.
 - 
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.
 - 
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.
 
- 
 - 
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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<HtmlInputFile.PropertyKeys>
 
 
- 
 
-