Package de.mid.innovator.srv
Enum LicSrvErrorException.LicSrvStatusValues
- java.lang.Object
-
- java.lang.Enum<LicSrvErrorException.LicSrvStatusValues>
-
- de.mid.innovator.srv.LicSrvErrorException.LicSrvStatusValues
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<LicSrvErrorException.LicSrvStatusValues>
- Enclosing class:
- LicSrvErrorException
public static enum LicSrvErrorException.LicSrvStatusValues extends java.lang.Enum<LicSrvErrorException.LicSrvStatusValues>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
toInt()
static LicSrvErrorException.LicSrvStatusValues
valueOf(int status1)
Returns the enum constant of this type with the specified name.static LicSrvErrorException.LicSrvStatusValues
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
LIC_SRV_UNKNOWN_TELE
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_UNKNOWN_TELE
-
LIC_SRV_NOT_RESPONDING
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_NOT_RESPONDING
-
LIC_SRV_VERSION_ERROR
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_VERSION_ERROR
-
LIC_SRV_INSTTIME_OVER
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_INSTTIME_OVER
-
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
-
LIC_SRV_NOT_ADMINISTRATED
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_NOT_ADMINISTRATED
-
LIC_SRV_SRV_VERSION_ERROR
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_SRV_VERSION_ERROR
-
LIC_SRV_CLIENT
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_CLIENT
-
LIC_SRV_ADMIN_RUNNING
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_ADMIN_RUNNING
-
LIC_SRV_USER_UNKNOWN
public static final LicSrvErrorException.LicSrvStatusValues LIC_SRV_USER_UNKNOWN
-
-
Method Detail
-
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
-
valueOf
public static LicSrvErrorException.LicSrvStatusValues valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toInt
public int toInt()
-
valueOf
public static LicSrvErrorException.LicSrvStatusValues valueOf(int status1)
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:
status1
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-