com.semarchy.mdm.client
Enum PlatformStatus

java.lang.Object
  extended by java.lang.Enum<PlatformStatus>
      extended by com.semarchy.mdm.client.PlatformStatus
All Implemented Interfaces:
Serializable, Comparable<PlatformStatus>

public enum PlatformStatus
extends Enum<PlatformStatus>

Enum indicating the possible status of the MDM platform.

Author:
sarod

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

REPOSITORY_CONNECTIVITY_ERROR

public static final PlatformStatus REPOSITORY_CONNECTIVITY_ERROR
Repository Datasource has connectivity problems


REPOSITORY_NOT_READY

public static final PlatformStatus REPOSITORY_NOT_READY
Connectivity to repository DS is OK but Repository is not installed or not up to date.


LICENSEKEY_INVALID_OR_EXPIRED

public static final PlatformStatus LICENSEKEY_INVALID_OR_EXPIRED
Platform License Key is invalid or has expired


PLATFORM_READY

public static final PlatformStatus PLATFORM_READY
Platform is ready for business

Method Detail

values

public static PlatformStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PlatformStatus c : PlatformStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PlatformStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2015. All Rights Reserved.