Enum TEST_CASE_COPY_PASTE_MODE
- java.lang.Object
-
- java.lang.Enum<TEST_CASE_COPY_PASTE_MODE>
-
- step.repository.alm.v16.otaclient.TEST_CASE_COPY_PASTE_MODE
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<TEST_CASE_COPY_PASTE_MODE>
public enum TEST_CASE_COPY_PASTE_MODE extends java.lang.Enum<TEST_CASE_COPY_PASTE_MODE> implements com4j.ComEnum
Options for pasting test class objects. Whether test class should be copied including all it's data cases.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COPY_PASTE_INCLUDE_DATA_CASE
Copy test class including all it's data cases.COPY_PASTE_NO_DATA_CASE
Do not copy data cases.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static TEST_CASE_COPY_PASTE_MODE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TEST_CASE_COPY_PASTE_MODE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COPY_PASTE_NO_DATA_CASE
public static final TEST_CASE_COPY_PASTE_MODE COPY_PASTE_NO_DATA_CASE
Do not copy data cases.
The value of this constant is 0
-
COPY_PASTE_INCLUDE_DATA_CASE
public static final TEST_CASE_COPY_PASTE_MODE COPY_PASTE_INCLUDE_DATA_CASE
Copy test class including all it's data cases.
The value of this constant is 32
-
-
Method Detail
-
values
public static TEST_CASE_COPY_PASTE_MODE[] 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 (TEST_CASE_COPY_PASTE_MODE c : TEST_CASE_COPY_PASTE_MODE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TEST_CASE_COPY_PASTE_MODE 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
-
-