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