public static enum EntityDefinition.DisplayMode extends java.lang.Enum<EntityDefinition.DisplayMode>
Enum Constant and Description |
---|
COMPACT |
FULL |
HIERARCHICAL |
MINIMAL |
Modifier and Type | Method and Description |
---|---|
static EntityDefinition.DisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntityDefinition.DisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityDefinition.DisplayMode MINIMAL
public static final EntityDefinition.DisplayMode COMPACT
public static final EntityDefinition.DisplayMode FULL
public static final EntityDefinition.DisplayMode HIERARCHICAL
public static EntityDefinition.DisplayMode[] values()
for (EntityDefinition.DisplayMode c : EntityDefinition.DisplayMode.values()) System.out.println(c);
public static EntityDefinition.DisplayMode 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