public enum ApplicationVersionStatus extends Enum<ApplicationVersionStatus> implements EnumWithKey
ApplicationVersion is publicly visible or not.EnumWithKey.Parser<A extends EnumWithKey>| Enum Constant and Description |
|---|
PUBLISHED
The version is visible to everyone.
|
UNPUBLISHED
The version is visible only to Atlassian administrators.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getKey()
The string key that represents this value in the Marketplace API.
|
static ApplicationVersionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationVersionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationVersionStatus PUBLISHED
public static final ApplicationVersionStatus UNPUBLISHED
public static ApplicationVersionStatus[] values()
for (ApplicationVersionStatus c : ApplicationVersionStatus.values()) System.out.println(c);
public static ApplicationVersionStatus 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 nullpublic String getKey()
EnumWithKeygetKey in interface EnumWithKeyCopyright © 2016 Atlassian. All rights reserved.