public enum MobileAppPublishingState extends java.lang.Enum<MobileAppPublishingState>
| Enum Constant and Description |
|---|
NOT_PUBLISHED
not Published
|
PROCESSING
processing
|
PUBLISHED
published
|
UNEXPECTED_VALUE
For MobileAppPublishingState values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MobileAppPublishingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MobileAppPublishingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobileAppPublishingState NOT_PUBLISHED
public static final MobileAppPublishingState PROCESSING
public static final MobileAppPublishingState PUBLISHED
public static final MobileAppPublishingState UNEXPECTED_VALUE
public static MobileAppPublishingState[] values()
for (MobileAppPublishingState c : MobileAppPublishingState.values()) System.out.println(c);
public static MobileAppPublishingState 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