Package org.dmg.pmml
Enum ResultFeature
- java.lang.Object
-
- java.lang.Enum<ResultFeature>
-
- org.dmg.pmml.ResultFeature
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResultFeature>,StringValue<ResultFeature>
public enum ResultFeature extends java.lang.Enum<ResultFeature> implements StringValue<ResultFeature>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResultFeaturefromValue(java.lang.String v)java.lang.StringtoString()java.lang.Stringvalue()static ResultFeaturevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResultFeature[]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 ResultFeature PREDICTED_VALUE
-
PREDICTED_DISPLAY_VALUE
public static final ResultFeature PREDICTED_DISPLAY_VALUE
-
TRANSFORMED_VALUE
public static final ResultFeature TRANSFORMED_VALUE
-
DECISION
public static final ResultFeature DECISION
-
PROBABILITY
public static final ResultFeature PROBABILITY
-
AFFINITY
public static final ResultFeature AFFINITY
-
RESIDUAL
public static final ResultFeature RESIDUAL
-
STANDARD_ERROR
public static final ResultFeature STANDARD_ERROR
-
STANDARD_DEVIATION
public static final ResultFeature STANDARD_DEVIATION
-
CLUSTER_ID
public static final ResultFeature CLUSTER_ID
-
CLUSTER_AFFINITY
public static final ResultFeature CLUSTER_AFFINITY
-
ENTITY_ID
public static final ResultFeature ENTITY_ID
-
ENTITY_AFFINITY
public static final ResultFeature ENTITY_AFFINITY
-
WARNING
public static final ResultFeature WARNING
-
RULE_VALUE
public static final ResultFeature RULE_VALUE
-
REASON_CODE
public static final ResultFeature REASON_CODE
-
ANTECEDENT
public static final ResultFeature ANTECEDENT
-
CONSEQUENT
public static final ResultFeature CONSEQUENT
-
RULE
public static final ResultFeature RULE
-
RULE_ID
public static final ResultFeature RULE_ID
-
CONFIDENCE
public static final ResultFeature CONFIDENCE
-
SUPPORT
public static final ResultFeature SUPPORT
-
LIFT
public static final ResultFeature LIFT
-
LEVERAGE
public static final ResultFeature LEVERAGE
-
CONFIDENCE_INTERVAL_LOWER
public static final ResultFeature CONFIDENCE_INTERVAL_LOWER
-
CONFIDENCE_INTERVAL_UPPER
public static final ResultFeature CONFIDENCE_INTERVAL_UPPER
-
REPORT
public static final ResultFeature REPORT
-
-
Method Detail
-
values
public static ResultFeature[] 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 (ResultFeature c : ResultFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultFeature 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
-
value
public java.lang.String value()
- Specified by:
valuein interfaceStringValue<ResultFeature>
-
fromValue
public static ResultFeature fromValue(java.lang.String v)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ResultFeature>
-
-