public static enum AssignmentConstants.Status extends Enum<AssignmentConstants.Status>
| Modifier and Type | Method and Description |
|---|---|
static AssignmentConstants.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssignmentConstants.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssignmentConstants.Status DRAFT
public static final AssignmentConstants.Status NOT_OPEN
public static final AssignmentConstants.Status OPEN
public static final AssignmentConstants.Status CLOSED
public static final AssignmentConstants.Status DUE
public static AssignmentConstants.Status[] values()
for (AssignmentConstants.Status c : AssignmentConstants.Status.values()) System.out.println(c);
public static AssignmentConstants.Status 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.