|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SubmissionMode>
org.qtitools.qti.node.test.SubmissionMode
public enum SubmissionMode
The submission mode determines when the candidate's responses are submitted for response processing.
individual - requires the candidate to submit their responses on an item-by-item basis.
simultaneous - the candidate's responses are all submitted together at the end of the testPart.
| Enum Constant Summary | |
|---|---|
INDIVIDUAL
Requires the candidate to submit their responses on an item-by-item basis. |
|
SIMULTANEOUS
The candidate's responses are all submitted together at the end of the testPart. |
|
| Field Summary | |
|---|---|
static java.lang.String |
CLASS_TAG
Name of this class in xml schema. |
| Method Summary | |
|---|---|
static SubmissionMode |
parseSubmissionMode(java.lang.String submissionMode)
Returns parsed SubmissionMode from given String. |
java.lang.String |
toString()
|
static SubmissionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SubmissionMode[] |
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 SubmissionMode INDIVIDUAL
public static final SubmissionMode SIMULTANEOUS
| Field Detail |
|---|
public static final java.lang.String CLASS_TAG
| Method Detail |
|---|
public static final SubmissionMode[] values()
for(SubmissionMode c : SubmissionMode.values())
System.out.println(c);
public static SubmissionMode 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<SubmissionMode>
public static SubmissionMode parseSubmissionMode(java.lang.String submissionMode)
throws QTIParseException
SubmissionMode from given String.
submissionMode - String representation of SubmissionMode
SubmissionMode from given String
QTIParseException - if given String is not valid SubmissionMode
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||