public static enum Scope.ScopeType extends java.lang.Enum<Scope.ScopeType>
Scope that describes its level of access.| Enum Constant and Description |
|---|
GENERAL
Scopes that can be used without review. |
PRIVILEGED
Scopes that require approval before opened to your users in production. |
| Modifier and Type | Method and Description |
|---|---|
static Scope.ScopeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Scope.ScopeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope.ScopeType GENERAL
Scopes that can be used without review.public static final Scope.ScopeType PRIVILEGED
Scopes that require approval before opened to your users in production.public static Scope.ScopeType[] values()
for (Scope.ScopeType c : Scope.ScopeType.values()) System.out.println(c);
public static Scope.ScopeType 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 namejava.lang.NullPointerException - if the argument is null