public enum PublishedState extends Enum<PublishedState>
| Enum Constant and Description |
|---|
Active |
InError |
Offline |
Ready |
Recovering |
| Modifier and Type | Method and Description |
|---|---|
static PublishedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PublishedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PublishedState Offline
public static final PublishedState Ready
public static final PublishedState Active
public static final PublishedState InError
public static final PublishedState Recovering
public static PublishedState[] values()
for (PublishedState c : PublishedState.values()) System.out.println(c);
public static PublishedState 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 LSST. All Rights Reserved.