Package org.kie.pmml.api.enums
Enum RESULT_FEATURE
- java.lang.Object
-
- java.lang.Enum<RESULT_FEATURE>
-
- org.kie.pmml.api.enums.RESULT_FEATURE
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RESULT_FEATURE>,Named
public enum RESULT_FEATURE extends java.lang.Enum<RESULT_FEATURE> implements Named
- See Also:
- RESULT_FEATURE
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static RESULT_FEATUREDEFAULT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RESULT_FEATUREbyName(java.lang.String name)java.lang.StringgetName()static RESULT_FEATUREgetOrDefault(RESULT_FEATURE input)static RESULT_FEATUREvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RESULT_FEATURE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PREDICTED_VALUE
public static final RESULT_FEATURE PREDICTED_VALUE
-
PREDICTED_DISPLAY_VALUE
public static final RESULT_FEATURE PREDICTED_DISPLAY_VALUE
-
TRANSFORMED_VALUE
public static final RESULT_FEATURE TRANSFORMED_VALUE
-
DECISION
public static final RESULT_FEATURE DECISION
-
PROBABILITY
public static final RESULT_FEATURE PROBABILITY
-
AFFINITY
public static final RESULT_FEATURE AFFINITY
-
RESIDUAL
public static final RESULT_FEATURE RESIDUAL
-
STANDARD_ERROR
public static final RESULT_FEATURE STANDARD_ERROR
-
STANDARD_DEVIATION
public static final RESULT_FEATURE STANDARD_DEVIATION
-
CLUSTER_ID
public static final RESULT_FEATURE CLUSTER_ID
-
CLUSTER_AFFINITY
public static final RESULT_FEATURE CLUSTER_AFFINITY
-
ENTITY_ID
public static final RESULT_FEATURE ENTITY_ID
-
ENTITY_AFFINITY
public static final RESULT_FEATURE ENTITY_AFFINITY
-
WARNING
public static final RESULT_FEATURE WARNING
-
RULE_VALUE
public static final RESULT_FEATURE RULE_VALUE
-
REASON_CODE
public static final RESULT_FEATURE REASON_CODE
-
ANTECEDENT
public static final RESULT_FEATURE ANTECEDENT
-
CONSEQUENT
public static final RESULT_FEATURE CONSEQUENT
-
RULE
public static final RESULT_FEATURE RULE
-
RULE_ID
public static final RESULT_FEATURE RULE_ID
-
CONFIDENCE
public static final RESULT_FEATURE CONFIDENCE
-
SUPPORT
public static final RESULT_FEATURE SUPPORT
-
LIFT
public static final RESULT_FEATURE LIFT
-
LEVERAGE
public static final RESULT_FEATURE LEVERAGE
-
-
Field Detail
-
DEFAULT
public static final RESULT_FEATURE DEFAULT
-
-
Method Detail
-
values
public static RESULT_FEATURE[] 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 (RESULT_FEATURE c : RESULT_FEATURE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RESULT_FEATURE 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
-
byName
public static RESULT_FEATURE byName(java.lang.String name)
-
getOrDefault
public static RESULT_FEATURE getOrDefault(RESULT_FEATURE input)
-
-