Package jakarta.faces.component.html
Enum HtmlCommandButton.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlCommandButton.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlCommandButton.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlCommandButton.PropertyKeys>
 - Enclosing class:
- HtmlCommandButton
 
 protected static enum HtmlCommandButton.PropertyKeys extends Enum<HtmlCommandButton.PropertyKeys> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeyaltdirdisabledimagelabellangonbluronchangeonclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuponselectreadonlyrolestylestyleClasstabindextitletype
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static HtmlCommandButton.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlCommandButton.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
imagepublic static final HtmlCommandButton.PropertyKeys image 
 - 
typepublic static final HtmlCommandButton.PropertyKeys type 
 - 
accesskeypublic static final HtmlCommandButton.PropertyKeys accesskey 
 - 
onselectpublic static final HtmlCommandButton.PropertyKeys onselect 
 - 
onclickpublic static final HtmlCommandButton.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlCommandButton.PropertyKeys ondblclick 
 - 
onkeydownpublic static final HtmlCommandButton.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlCommandButton.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlCommandButton.PropertyKeys onkeyup 
 - 
onmousedownpublic static final HtmlCommandButton.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlCommandButton.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlCommandButton.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlCommandButton.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlCommandButton.PropertyKeys onmouseup 
 - 
stylepublic static final HtmlCommandButton.PropertyKeys style 
 - 
styleClasspublic static final HtmlCommandButton.PropertyKeys styleClass 
 - 
disabledpublic static final HtmlCommandButton.PropertyKeys disabled 
 - 
readonlypublic static final HtmlCommandButton.PropertyKeys readonly 
 - 
rolepublic static final HtmlCommandButton.PropertyKeys role 
 - 
labelpublic static final HtmlCommandButton.PropertyKeys label 
 - 
altpublic static final HtmlCommandButton.PropertyKeys alt 
 - 
dirpublic static final HtmlCommandButton.PropertyKeys dir 
 - 
langpublic static final HtmlCommandButton.PropertyKeys lang 
 - 
titlepublic static final HtmlCommandButton.PropertyKeys title 
 - 
onblurpublic static final HtmlCommandButton.PropertyKeys onblur 
 - 
onfocuspublic static final HtmlCommandButton.PropertyKeys onfocus 
 - 
tabindexpublic static final HtmlCommandButton.PropertyKeys tabindex 
 - 
onchangepublic static final HtmlCommandButton.PropertyKeys onchange 
 
- 
 - 
Method Detail- 
valuespublic static HtmlCommandButton.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 (HtmlCommandButton.PropertyKeys c : HtmlCommandButton.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlCommandButton.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
 
 
- 
 
-