Enum ClassificationAttr
- java.lang.Object
-
- java.lang.Enum<ClassificationAttr>
-
- com.actelion.research.calc.classification.ClassificationAttr
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ClassificationAttr>
public enum ClassificationAttr extends java.lang.Enum<ClassificationAttr>
Modest v. Korff Idorsia Pharmaceuticals Ltd. 04.03.2021 Start implementation
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NEG
static java.lang.String
NO
static java.lang.String
POS
static java.lang.String
TAG_TEST_CLASS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClassificationAttr
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ClassificationAttr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POSITIVE
public static final ClassificationAttr POSITIVE
-
NEGATIVE
public static final ClassificationAttr NEGATIVE
-
NONE
public static final ClassificationAttr NONE
-
-
Field Detail
-
TAG_TEST_CLASS
public static final java.lang.String TAG_TEST_CLASS
- See Also:
- Constant Field Values
-
POS
public static final java.lang.String POS
- See Also:
- Constant Field Values
-
NEG
public static final java.lang.String NEG
- See Also:
- Constant Field Values
-
NO
public static final java.lang.String NO
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ClassificationAttr[] 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 (ClassificationAttr c : ClassificationAttr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClassificationAttr 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
-
-