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