Enum COPY_PASTE_ROOTS
- java.lang.Object
-
- java.lang.Enum<COPY_PASTE_ROOTS>
-
- step.repository.alm.v16.otaclient.COPY_PASTE_ROOTS
-
- All Implemented Interfaces:
com4j.ComEnum
,java.io.Serializable
,java.lang.Comparable<COPY_PASTE_ROOTS>
public enum COPY_PASTE_ROOTS extends java.lang.Enum<COPY_PASTE_ROOTS> implements com4j.ComEnum
Special Copy Paste Roots.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CPR_ANALYSIS_PRIVATE
Private root.CPR_ANALYSIS_PUBLIC
Public root.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
comEnumValue()
static COPY_PASTE_ROOTS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static COPY_PASTE_ROOTS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CPR_ANALYSIS_PRIVATE
public static final COPY_PASTE_ROOTS CPR_ANALYSIS_PRIVATE
Private root.
The value of this constant is -2147483646
-
CPR_ANALYSIS_PUBLIC
public static final COPY_PASTE_ROOTS CPR_ANALYSIS_PUBLIC
Public root.
The value of this constant is -2147483645
-
-
Method Detail
-
values
public static COPY_PASTE_ROOTS[] 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 (COPY_PASTE_ROOTS c : COPY_PASTE_ROOTS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static COPY_PASTE_ROOTS 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
-
-