public enum PlatformStatus extends Enum<PlatformStatus>
Enum Constant and Description |
---|
LICENSEKEY_INVALID_OR_EXPIRED
Platform License Key is invalid or has expired
|
PLATFORM_READY
Platform is ready for business
|
REPOSITORY_CONNECTIVITY_ERROR
Repository Datasource has connectivity problems
|
REPOSITORY_NOT_READY
Connectivity to repository DS is OK but Repository is not installed or not up to date.
|
Modifier and Type | Method and Description |
---|---|
static PlatformStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlatformStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlatformStatus REPOSITORY_CONNECTIVITY_ERROR
public static final PlatformStatus REPOSITORY_NOT_READY
public static final PlatformStatus LICENSEKEY_INVALID_OR_EXPIRED
public static final PlatformStatus PLATFORM_READY
public static PlatformStatus[] values()
for (PlatformStatus c : PlatformStatus.values()) System.out.println(c);
public static PlatformStatus 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.