public static enum SourceStatus.SourceState extends Enum<SourceStatus.SourceState>
| Enum Constant and Description |
|---|
AVAILABLE |
REQUESTED |
REVOKED |
UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static SourceStatus.SourceState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceStatus.SourceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceStatus.SourceState UNAVAILABLE
public static final SourceStatus.SourceState REQUESTED
public static final SourceStatus.SourceState AVAILABLE
public static final SourceStatus.SourceState REVOKED
public static SourceStatus.SourceState[] values()
for (SourceStatus.SourceState c : SourceStatus.SourceState.values()) System.out.println(c);
public static SourceStatus.SourceState 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 © 2014. All rights reserved.