Enum TDLICENSE_CLIENT
- java.lang.Object
-
- java.lang.Enum<TDLICENSE_CLIENT>
-
- step.repository.alm.v16.otaclient.TDLICENSE_CLIENT
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<TDLICENSE_CLIENT>
public enum TDLICENSE_CLIENT extends java.lang.Enum<TDLICENSE_CLIENT> implements com4j.ComEnum
Client license types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TDLICENSE_BUG
BUG Client License.TDLICENSE_COLLAB
Collaboration Client License.TDLICENSE_COMPONENTS
Components Client License.TDLICENSE_DASHBOARD
Dashboard Client License.TDLICENSE_LAB
Lab Client License.TDLICENSE_OTA_CLIENT
OTA Client License.TDLICENSE_REQ
Requirements Client License.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static TDLICENSE_CLIENT
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TDLICENSE_CLIENT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TDLICENSE_BUG
public static final TDLICENSE_CLIENT TDLICENSE_BUG
BUG Client License.
The value of this constant is 1
-
TDLICENSE_LAB
public static final TDLICENSE_CLIENT TDLICENSE_LAB
Lab Client License.
The value of this constant is 2
-
TDLICENSE_REQ
public static final TDLICENSE_CLIENT TDLICENSE_REQ
Requirements Client License.
The value of this constant is 4
-
TDLICENSE_OTA_CLIENT
public static final TDLICENSE_CLIENT TDLICENSE_OTA_CLIENT
OTA Client License.
The value of this constant is 8
-
TDLICENSE_COLLAB
public static final TDLICENSE_CLIENT TDLICENSE_COLLAB
Collaboration Client License.
The value of this constant is 32
-
TDLICENSE_DASHBOARD
public static final TDLICENSE_CLIENT TDLICENSE_DASHBOARD
Dashboard Client License.
The value of this constant is 2048
-
TDLICENSE_COMPONENTS
public static final TDLICENSE_CLIENT TDLICENSE_COMPONENTS
Components Client License.
The value of this constant is 4096
-
-
Method Detail
-
values
public static TDLICENSE_CLIENT[] 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 (TDLICENSE_CLIENT c : TDLICENSE_CLIENT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TDLICENSE_CLIENT 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
-
comEnumValue
public int comEnumValue()
- Specified by:
comEnumValue
in interfacecom4j.ComEnum
-
-