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