public enum ScopeStatus extends Enum<ScopeStatus> implements Named
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static ScopeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScopeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScopeStatus FIXED
public static final ScopeStatus OPTIONAL
public static final ScopeStatus UNKNOWN
public static ScopeStatus[] values()
for (ScopeStatus c : ScopeStatus.values()) System.out.println(c);
public static ScopeStatus 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 nullpublic String toString()
toString in class Enum<ScopeStatus>Licenced under the Apache License, Version 2.0