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