public static enum YtPublicationState.State extends java.lang.Enum<YtPublicationState.State>
PUBLISHED
.Enum Constant and Description |
---|
DELETED
Entry was removed by the owner.
|
FAILED
The entry was not successfully processed.
|
INCOMPLETE
The entry has not been completely defined yet, but it's been stored
already.
|
PROCESSING
The entry has just been uploaded and is not yet publicly available.
|
REJECTED
The entry has been rejected.
|
RESTRICTED
Entry is restricted for the current user, see reasonCode for details.
|
Modifier and Type | Method and Description |
---|---|
static YtPublicationState.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static YtPublicationState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YtPublicationState.State INCOMPLETE
public static final YtPublicationState.State PROCESSING
public static final YtPublicationState.State REJECTED
public static final YtPublicationState.State FAILED
public static final YtPublicationState.State DELETED
public static final YtPublicationState.State RESTRICTED
public static YtPublicationState.State[] values()
for (YtPublicationState.State c : YtPublicationState.State.values()) System.out.println(c);
public static YtPublicationState.State 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