Package org.dmg.pmml.mining
Enum Segmentation.MultipleModelMethod
- java.lang.Object
-
- java.lang.Enum<Segmentation.MultipleModelMethod>
-
- org.dmg.pmml.mining.Segmentation.MultipleModelMethod
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Segmentation.MultipleModelMethod>,StringValue<Segmentation.MultipleModelMethod>
- Enclosing class:
- Segmentation
public static enum Segmentation.MultipleModelMethod extends java.lang.Enum<Segmentation.MultipleModelMethod> implements StringValue<Segmentation.MultipleModelMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGEMAJORITY_VOTEMAXMEDIANMODEL_CHAINMULTI_MODEL_CHAINSELECT_ALLSELECT_FIRSTSUMWEIGHTED_AVERAGEWEIGHTED_MAJORITY_VOTEWEIGHTED_MEDIANWEIGHTED_SUM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Segmentation.MultipleModelMethodfromValue(java.lang.String v)java.lang.StringtoString()java.lang.Stringvalue()static Segmentation.MultipleModelMethodvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Segmentation.MultipleModelMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAJORITY_VOTE
public static final Segmentation.MultipleModelMethod MAJORITY_VOTE
-
WEIGHTED_MAJORITY_VOTE
public static final Segmentation.MultipleModelMethod WEIGHTED_MAJORITY_VOTE
-
AVERAGE
public static final Segmentation.MultipleModelMethod AVERAGE
-
WEIGHTED_AVERAGE
public static final Segmentation.MultipleModelMethod WEIGHTED_AVERAGE
-
MEDIAN
public static final Segmentation.MultipleModelMethod MEDIAN
-
WEIGHTED_MEDIAN
public static final Segmentation.MultipleModelMethod WEIGHTED_MEDIAN
-
MAX
public static final Segmentation.MultipleModelMethod MAX
-
SUM
public static final Segmentation.MultipleModelMethod SUM
-
WEIGHTED_SUM
public static final Segmentation.MultipleModelMethod WEIGHTED_SUM
-
SELECT_FIRST
public static final Segmentation.MultipleModelMethod SELECT_FIRST
-
SELECT_ALL
public static final Segmentation.MultipleModelMethod SELECT_ALL
-
MODEL_CHAIN
public static final Segmentation.MultipleModelMethod MODEL_CHAIN
-
MULTI_MODEL_CHAIN
public static final Segmentation.MultipleModelMethod MULTI_MODEL_CHAIN
-
-
Method Detail
-
values
public static Segmentation.MultipleModelMethod[] 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 (Segmentation.MultipleModelMethod c : Segmentation.MultipleModelMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Segmentation.MultipleModelMethod 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<Segmentation.MultipleModelMethod>
-
fromValue
public static Segmentation.MultipleModelMethod fromValue(java.lang.String v)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Segmentation.MultipleModelMethod>
-
-