public enum DefaultEntities extends java.lang.Enum<DefaultEntities>
| Enum Constant and Description |
|---|
BACKGROUND |
CHAR_1 |
CHAR_2 |
PLATFORM |
| Modifier and Type | Method and Description |
|---|---|
IEntity |
getDefault()
returns default string
|
static DefaultEntities |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultEntities[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultEntities CHAR_1
public static final DefaultEntities CHAR_2
public static final DefaultEntities BACKGROUND
public static final DefaultEntities PLATFORM
public static DefaultEntities[] values()
for (DefaultEntities c : DefaultEntities.values()) System.out.println(c);
public static DefaultEntities 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 IEntity getDefault()