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