Package org.kie.pmml.api.enums
Enum REASONCODE_ALGORITHM
- java.lang.Object
-
- java.lang.Enum<REASONCODE_ALGORITHM>
-
- org.kie.pmml.api.enums.REASONCODE_ALGORITHM
-
- All Implemented Interfaces:
Serializable,Comparable<REASONCODE_ALGORITHM>
public enum REASONCODE_ALGORITHM extends Enum<REASONCODE_ALGORITHM>
- See Also:
- reasonCodeAlgorithm
-
-
Enum Constant Summary
Enum Constants Enum Constant Description POINTS_ABOVEPOINTS_BELOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static REASONCODE_ALGORITHMbyName(String name)StringgetName()static REASONCODE_ALGORITHMvalueOf(String name)Returns the enum constant of this type with the specified name.static REASONCODE_ALGORITHM[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POINTS_ABOVE
public static final REASONCODE_ALGORITHM POINTS_ABOVE
-
POINTS_BELOW
public static final REASONCODE_ALGORITHM POINTS_BELOW
-
-
Method Detail
-
values
public static REASONCODE_ALGORITHM[] 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 (REASONCODE_ALGORITHM c : REASONCODE_ALGORITHM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static REASONCODE_ALGORITHM valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
byName
public static REASONCODE_ALGORITHM byName(String name)
-
getName
public String getName()
-
-