Package jakarta.faces.component.html
Enum HtmlDataTable.PropertyKeys
- java.lang.Object
- 
- java.lang.Enum<HtmlDataTable.PropertyKeys>
- 
- jakarta.faces.component.html.HtmlDataTable.PropertyKeys
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<HtmlDataTable.PropertyKeys>
 - Enclosing class:
- HtmlDataTable
 
 protected static enum HtmlDataTable.PropertyKeys extends Enum<HtmlDataTable.PropertyKeys> The property keys.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description bgcolorbodyrowsbordercaptionClasscaptionStylecellpaddingcellspacingcolumnClassesdirfooterClassframeheaderClasslangonclickondblclickonkeydownonkeypressonkeyuponmousedownonmousemoveonmouseoutonmouseoveronmouseuprolerowClassrowClassesrulesstylestyleClasssummarytitlewidth
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static HtmlDataTable.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static HtmlDataTable.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
bgcolorpublic static final HtmlDataTable.PropertyKeys bgcolor 
 - 
bodyrowspublic static final HtmlDataTable.PropertyKeys bodyrows 
 - 
borderpublic static final HtmlDataTable.PropertyKeys border 
 - 
captionClasspublic static final HtmlDataTable.PropertyKeys captionClass 
 - 
captionStylepublic static final HtmlDataTable.PropertyKeys captionStyle 
 - 
cellpaddingpublic static final HtmlDataTable.PropertyKeys cellpadding 
 - 
cellspacingpublic static final HtmlDataTable.PropertyKeys cellspacing 
 - 
columnClassespublic static final HtmlDataTable.PropertyKeys columnClasses 
 - 
dirpublic static final HtmlDataTable.PropertyKeys dir 
 - 
footerClasspublic static final HtmlDataTable.PropertyKeys footerClass 
 - 
framepublic static final HtmlDataTable.PropertyKeys frame 
 - 
headerClasspublic static final HtmlDataTable.PropertyKeys headerClass 
 - 
langpublic static final HtmlDataTable.PropertyKeys lang 
 - 
onclickpublic static final HtmlDataTable.PropertyKeys onclick 
 - 
ondblclickpublic static final HtmlDataTable.PropertyKeys ondblclick 
 - 
onkeydownpublic static final HtmlDataTable.PropertyKeys onkeydown 
 - 
onkeypresspublic static final HtmlDataTable.PropertyKeys onkeypress 
 - 
onkeyuppublic static final HtmlDataTable.PropertyKeys onkeyup 
 - 
onmousedownpublic static final HtmlDataTable.PropertyKeys onmousedown 
 - 
onmousemovepublic static final HtmlDataTable.PropertyKeys onmousemove 
 - 
onmouseoutpublic static final HtmlDataTable.PropertyKeys onmouseout 
 - 
onmouseoverpublic static final HtmlDataTable.PropertyKeys onmouseover 
 - 
onmouseuppublic static final HtmlDataTable.PropertyKeys onmouseup 
 - 
rolepublic static final HtmlDataTable.PropertyKeys role 
 - 
rowClasspublic static final HtmlDataTable.PropertyKeys rowClass 
 - 
rowClassespublic static final HtmlDataTable.PropertyKeys rowClasses 
 - 
rulespublic static final HtmlDataTable.PropertyKeys rules 
 - 
stylepublic static final HtmlDataTable.PropertyKeys style 
 - 
styleClasspublic static final HtmlDataTable.PropertyKeys styleClass 
 - 
summarypublic static final HtmlDataTable.PropertyKeys summary 
 - 
titlepublic static final HtmlDataTable.PropertyKeys title 
 - 
widthpublic static final HtmlDataTable.PropertyKeys width 
 
- 
 - 
Method Detail- 
valuespublic static HtmlDataTable.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 (HtmlDataTable.PropertyKeys c : HtmlDataTable.PropertyKeys.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static HtmlDataTable.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<HtmlDataTable.PropertyKeys>
 
 
- 
 
-