public enum MULTIPLEMODELMETHOD extends java.lang.Enum<MULTIPLEMODELMETHOD>
Java class for MULTIPLE-MODEL-METHOD.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MULTIPLE-MODEL-METHOD"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="majorityVote"/> <enumeration value="weightedMajorityVote"/> <enumeration value="average"/> <enumeration value="weightedAverage"/> <enumeration value="median"/> <enumeration value="max"/> <enumeration value="sum"/> <enumeration value="selectFirst"/> <enumeration value="selectAll"/> <enumeration value="modelChain"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AVERAGE |
MAJORITY_VOTE |
MAX |
MEDIAN |
MODEL_CHAIN |
SELECT_ALL |
SELECT_FIRST |
SUM |
WEIGHTED_AVERAGE |
WEIGHTED_MAJORITY_VOTE |
Modifier and Type | Method and Description |
---|---|
static MULTIPLEMODELMETHOD |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static MULTIPLEMODELMETHOD |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MULTIPLEMODELMETHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MULTIPLEMODELMETHOD AVERAGE
public static final MULTIPLEMODELMETHOD MAJORITY_VOTE
public static final MULTIPLEMODELMETHOD MAX
public static final MULTIPLEMODELMETHOD MEDIAN
public static final MULTIPLEMODELMETHOD MODEL_CHAIN
public static final MULTIPLEMODELMETHOD SELECT_ALL
public static final MULTIPLEMODELMETHOD SELECT_FIRST
public static final MULTIPLEMODELMETHOD SUM
public static final MULTIPLEMODELMETHOD WEIGHTED_AVERAGE
public static final MULTIPLEMODELMETHOD WEIGHTED_MAJORITY_VOTE
public static MULTIPLEMODELMETHOD[] values()
for (MULTIPLEMODELMETHOD c : MULTIPLEMODELMETHOD.values()) System.out.println(c);
public static MULTIPLEMODELMETHOD valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static MULTIPLEMODELMETHOD fromValue(java.lang.String v)