protected static enum HtmlForm.PropertyKeys extends java.lang.Enum<HtmlForm.PropertyKeys>
Enum Constant and Description |
---|
accept |
acceptcharset |
dir |
enctype |
lang |
onclick |
ondblclick |
onkeydown |
onkeypress |
onkeyup |
onmousedown |
onmousemove |
onmouseout |
onmouseover |
onmouseup |
onreset |
onsubmit |
role |
style |
styleClass |
target |
title |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static HtmlForm.PropertyKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HtmlForm.PropertyKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlForm.PropertyKeys accept
public static final HtmlForm.PropertyKeys acceptcharset
public static final HtmlForm.PropertyKeys dir
public static final HtmlForm.PropertyKeys enctype
public static final HtmlForm.PropertyKeys lang
public static final HtmlForm.PropertyKeys onclick
public static final HtmlForm.PropertyKeys ondblclick
public static final HtmlForm.PropertyKeys onkeydown
public static final HtmlForm.PropertyKeys onkeypress
public static final HtmlForm.PropertyKeys onkeyup
public static final HtmlForm.PropertyKeys onmousedown
public static final HtmlForm.PropertyKeys onmousemove
public static final HtmlForm.PropertyKeys onmouseout
public static final HtmlForm.PropertyKeys onmouseover
public static final HtmlForm.PropertyKeys onmouseup
public static final HtmlForm.PropertyKeys onreset
public static final HtmlForm.PropertyKeys onsubmit
public static final HtmlForm.PropertyKeys role
public static final HtmlForm.PropertyKeys style
public static final HtmlForm.PropertyKeys styleClass
public static final HtmlForm.PropertyKeys target
public static final HtmlForm.PropertyKeys title
public static HtmlForm.PropertyKeys[] values()
for (HtmlForm.PropertyKeys c : HtmlForm.PropertyKeys.values()) System.out.println(c);
public static HtmlForm.PropertyKeys valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<HtmlForm.PropertyKeys>