public static enum DisplayType.Type extends java.lang.Enum<DisplayType.Type>
Enum Constant and Description |
---|
duration |
html |
image |
literal |
NA |
numeric |
time |
Modifier and Type | Method and Description |
---|---|
static DisplayType.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayType.Type numeric
public static final DisplayType.Type duration
public static final DisplayType.Type time
public static final DisplayType.Type literal
public static final DisplayType.Type html
public static final DisplayType.Type image
public static final DisplayType.Type NA
public static DisplayType.Type[] values()
for (DisplayType.Type c : DisplayType.Type.values()) System.out.println(c);
public static DisplayType.Type 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 null