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> The property keys.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description accesskeycharsetcoordsdirdisabledfragmenthreflanglangonbluronclickondblclickonfocusonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuprelrevroleshapestylestyleClasstabindextargettitletype
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()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- 
accesskeypublic static final HtmlOutputLink.PropertyKeys accesskey 
 - 
charsetpublic static final HtmlOutputLink.PropertyKeys charset 
 - 
coordspublic static final HtmlOutputLink.PropertyKeys coords 
 - 
dirpublic static final HtmlOutputLink.PropertyKeys dir 
 - 
disabledpublic static final HtmlOutputLink.PropertyKeys disabled 
 - 
fragmentpublic static final HtmlOutputLink.PropertyKeys fragment 
 - 
hreflangpublic static final HtmlOutputLink.PropertyKeys hreflang 
 - 
langpublic static final HtmlOutputLink.PropertyKeys lang 
 - 
onblurpublic static final HtmlOutputLink.PropertyKeys onblur 
 - 
onclickpublic static final HtmlOutputLink.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlOutputLink.PropertyKeys ondblclick 
 - 
onfocuspublic static final HtmlOutputLink.PropertyKeys onfocus 
 - 
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 
 - 
relpublic static final HtmlOutputLink.PropertyKeys rel 
 - 
revpublic static final HtmlOutputLink.PropertyKeys rev 
 - 
rolepublic static final HtmlOutputLink.PropertyKeys role 
 - 
shapepublic static final HtmlOutputLink.PropertyKeys shape 
 - 
stylepublic static final HtmlOutputLink.PropertyKeys style 
 - 
styleClasspublic static final HtmlOutputLink.PropertyKeys styleClass 
 - 
tabindexpublic static final HtmlOutputLink.PropertyKeys tabindex 
 - 
targetpublic static final HtmlOutputLink.PropertyKeys target 
 - 
titlepublic static final HtmlOutputLink.PropertyKeys title 
 - 
typepublic static final HtmlOutputLink.PropertyKeys type 
 
- 
 - 
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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<HtmlOutputLink.PropertyKeys>
 
 
- 
 
-