public enum MULTIPLEMODELMETHOD extends 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(String v) |
String |
value() |
static MULTIPLEMODELMETHOD |
valueOf(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 MAJORITY_VOTE
public static final MULTIPLEMODELMETHOD WEIGHTED_MAJORITY_VOTE
public static final MULTIPLEMODELMETHOD AVERAGE
public static final MULTIPLEMODELMETHOD WEIGHTED_AVERAGE
public static final MULTIPLEMODELMETHOD MEDIAN
public static final MULTIPLEMODELMETHOD MAX
public static final MULTIPLEMODELMETHOD SUM
public static final MULTIPLEMODELMETHOD SELECT_FIRST
public static final MULTIPLEMODELMETHOD SELECT_ALL
public static final MULTIPLEMODELMETHOD MODEL_CHAIN
public static MULTIPLEMODELMETHOD[] values()
for (MULTIPLEMODELMETHOD c : MULTIPLEMODELMETHOD.values()) System.out.println(c);
public static MULTIPLEMODELMETHOD valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String value()
public static MULTIPLEMODELMETHOD fromValue(String v)
Copyright © 2001–2015 JBoss by Red Hat. All rights reserved.