Enum TDAPI_MODULE
- java.lang.Object
-
- java.lang.Enum<TDAPI_MODULE>
-
- step.repository.alm.v16.otaclient.TDAPI_MODULE
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<TDAPI_MODULE>
public enum TDAPI_MODULE extends java.lang.Enum<TDAPI_MODULE> implements com4j.ComEnum
Modules.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODULE_COLLABORATION
Collaboration Module.MODULE_COMPONENTS
Components Module.MODULE_DASHBOARD
Dashboard Module.MODULE_DATATYPE
DataType Module.MODULE_DEFECT
Defect Module.MODULE_INVALID
Invalid module ID.MODULE_LIBRARIES
Libraries Module.MODULE_MODELS
Business Models Module.MODULE_RELEASE
Releases Module.MODULE_RELEASE_CYCLE
Release Cycle Module.MODULE_REQUIREMENT
Requirement Module.MODULE_TEST_EXECUTION
Test Execution Module.MODULE_TEST_PLANNING
Test Planning Module.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static TDAPI_MODULE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TDAPI_MODULE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODULE_INVALID
public static final TDAPI_MODULE MODULE_INVALID
Invalid module ID.
The value of this constant is -1
-
MODULE_DEFECT
public static final TDAPI_MODULE MODULE_DEFECT
Defect Module.
The value of this constant is 0
-
MODULE_TEST_PLANNING
public static final TDAPI_MODULE MODULE_TEST_PLANNING
Test Planning Module.
The value of this constant is 1
-
MODULE_TEST_EXECUTION
public static final TDAPI_MODULE MODULE_TEST_EXECUTION
Test Execution Module.
The value of this constant is 2
-
MODULE_REQUIREMENT
public static final TDAPI_MODULE MODULE_REQUIREMENT
Requirement Module.
The value of this constant is 3
-
MODULE_COLLABORATION
public static final TDAPI_MODULE MODULE_COLLABORATION
Collaboration Module.
The value of this constant is 4
-
MODULE_DASHBOARD
public static final TDAPI_MODULE MODULE_DASHBOARD
Dashboard Module.
The value of this constant is 5
-
MODULE_COMPONENTS
public static final TDAPI_MODULE MODULE_COMPONENTS
Components Module.
The value of this constant is 6
-
MODULE_RELEASE
public static final TDAPI_MODULE MODULE_RELEASE
Releases Module.
The value of this constant is 7
-
MODULE_RELEASE_CYCLE
public static final TDAPI_MODULE MODULE_RELEASE_CYCLE
Release Cycle Module.
The value of this constant is 8
-
MODULE_DATATYPE
public static final TDAPI_MODULE MODULE_DATATYPE
DataType Module.
The value of this constant is 9
-
MODULE_MODELS
public static final TDAPI_MODULE MODULE_MODELS
Business Models Module.
The value of this constant is 10
-
MODULE_LIBRARIES
public static final TDAPI_MODULE MODULE_LIBRARIES
Libraries Module.
The value of this constant is 11
-
-
Method Detail
-
values
public static TDAPI_MODULE[] 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 (TDAPI_MODULE c : TDAPI_MODULE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TDAPI_MODULE 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
-
-