public static enum Assignment.SubmissionType extends Enum<Assignment.SubmissionType>
Modifier and Type | Method and Description |
---|---|
static Assignment.SubmissionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Assignment.SubmissionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Assignment.SubmissionType ASSIGNMENT_SUBMISSION_TYPE_NONE
public static final Assignment.SubmissionType TEXT_ONLY_ASSIGNMENT_SUBMISSION
public static final Assignment.SubmissionType ATTACHMENT_ONLY_ASSIGNMENT_SUBMISSION
public static final Assignment.SubmissionType TEXT_AND_ATTACHMENT_ASSIGNMENT_SUBMISSION
public static final Assignment.SubmissionType NON_ELECTRONIC_ASSIGNMENT_SUBMISSION
public static final Assignment.SubmissionType SINGLE_ATTACHMENT_SUBMISSION
public static Assignment.SubmissionType[] values()
for (Assignment.SubmissionType c : Assignment.SubmissionType.values()) System.out.println(c);
public static Assignment.SubmissionType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2003–2019 The Sakai Foundation. All rights reserved.