|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PlatformStatus>
com.semarchy.mdm.client.PlatformStatus
public enum PlatformStatus
Enum indicating the possible status of the MDM platform.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |