de.mid.innovator.srv
Enum LicSrvErrorException.LicSrvStatusValues

java.lang.Object
  extended by java.lang.Enum<LicSrvErrorException.LicSrvStatusValues>
      extended by de.mid.innovator.srv.LicSrvErrorException.LicSrvStatusValues
All Implemented Interfaces:
Serializable, Comparable<LicSrvErrorException.LicSrvStatusValues>
Enclosing class:
LicSrvErrorException

public static enum LicSrvErrorException.LicSrvStatusValues
extends Enum<LicSrvErrorException.LicSrvStatusValues>


Enum Constant Summary
LIC_SRV_ADMIN_RUNNING
           
LIC_SRV_CLIENT
           
LIC_SRV_INSTTIME_OVER
           
LIC_SRV_NOT_ADMINISTRATED
           
LIC_SRV_NOT_RESPONDING
           
LIC_SRV_SRV_VERSION_ERROR
           
LIC_SRV_UNKNOWN_TELE
           
LIC_SRV_VERSION_ERROR
           
LIC_SRV_WB_NOT_INSTALLED
           
LIC_SRV_WB_NOT_LOCKED
           
 
Method Summary
 int toInt()
           
static LicSrvErrorException.LicSrvStatusValues valueOf(int status1)
           
static LicSrvErrorException.LicSrvStatusValues valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LicSrvErrorException.LicSrvStatusValues[] 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

LIC_SRV_ADMIN_RUNNING

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_ADMIN_RUNNING

LIC_SRV_CLIENT

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_CLIENT

LIC_SRV_INSTTIME_OVER

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_INSTTIME_OVER

LIC_SRV_NOT_ADMINISTRATED

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_NOT_ADMINISTRATED

LIC_SRV_NOT_RESPONDING

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_NOT_RESPONDING

LIC_SRV_SRV_VERSION_ERROR

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_SRV_VERSION_ERROR

LIC_SRV_UNKNOWN_TELE

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_UNKNOWN_TELE

LIC_SRV_VERSION_ERROR

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_VERSION_ERROR

LIC_SRV_WB_NOT_INSTALLED

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_WB_NOT_INSTALLED

LIC_SRV_WB_NOT_LOCKED

public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_WB_NOT_LOCKED
Method Detail

toInt

public int toInt()

valueOf

public static LicSrvErrorException.LicSrvStatusValues valueOf(int status1)

valueOf

public static LicSrvErrorException.LicSrvStatusValues 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

values

public static LicSrvErrorException.LicSrvStatusValues[] 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 (LicSrvErrorException.LicSrvStatusValues c : LicSrvErrorException.LicSrvStatusValues.values())
    System.out.println(c);

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