|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<NavigationMode>
org.qtitools.qti.node.test.NavigationMode
public enum NavigationMode
The navigation mode determines the general paths that the candidate may take.
linear - restricts the candidate to attempt each item in turn. Once the candidate moves on they are not permitted to return.
nonlinear - the candidate is free to navigate to any item in the test at any time.
| Enum Constant Summary | |
|---|---|
LINEAR
Restricts the candidate to attempt each item in turn. |
|
NONLINEAR
The candidate is free to navigate to any item in the test at any time. |
|
| Field Summary | |
|---|---|
static java.lang.String |
CLASS_TAG
Name of this class in xml schema. |
| Method Summary | |
|---|---|
static NavigationMode |
parseNavigationMode(java.lang.String navigationMode)
Returns parsed NavigationMode from given String. |
java.lang.String |
toString()
|
static NavigationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NavigationMode[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final NavigationMode LINEAR
public static final NavigationMode NONLINEAR
| Field Detail |
|---|
public static final java.lang.String CLASS_TAG
| Method Detail |
|---|
public static final NavigationMode[] values()
for(NavigationMode c : NavigationMode.values())
System.out.println(c);
public static NavigationMode 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 namepublic java.lang.String toString()
toString in class java.lang.Enum<NavigationMode>
public static NavigationMode parseNavigationMode(java.lang.String navigationMode)
throws QTIParseException
NavigationMode from given String.
navigationMode - String representation of NavigationMode
NavigationMode from given String
QTIParseException - if given String is not valid NavigationMode
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||