public enum TutorNavigator extends java.lang.Enum<TutorNavigator> implements TutorNavigationEnum
Enum Constant and Description |
---|
CHOOSE |
IF_THEN_ELSE |
LINEAR |
PLACEMENTS |
RANDOM |
Modifier and Type | Method and Description |
---|---|
static TutorNavigator |
findById(int id) |
java.lang.String |
getClassName() |
int |
getId() |
java.lang.String |
getName() |
static TutorNavigator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TutorNavigator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TutorNavigator LINEAR
public static final TutorNavigator RANDOM
public static final TutorNavigator IF_THEN_ELSE
public static final TutorNavigator CHOOSE
public static final TutorNavigator PLACEMENTS
public static TutorNavigator[] values()
for (TutorNavigator c : TutorNavigator.values()) System.out.println(c);
public static TutorNavigator 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 java.lang.String getClassName()
getClassName
in interface TutorNavigationEnum
public int getId()
getId
in interface TutorNavigationEnum
public static TutorNavigator findById(int id)
public java.lang.String getName()
getName
in interface TutorNavigationEnum