public enum HtmlItemType extends Enum<HtmlItemType>
| Enum Constant and Description |
|---|
BOX |
BOX_ATTRIBUTE |
TEXT |
URL |
| Modifier and Type | Method and Description |
|---|---|
static HtmlItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlItemType TEXT
public static final HtmlItemType URL
public static final HtmlItemType BOX
public static final HtmlItemType BOX_ATTRIBUTE
public static HtmlItemType[] values()
for (HtmlItemType c : HtmlItemType.values()) System.out.println(c);
public static HtmlItemType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.