public static enum Voter.CombiningType extends Enum<Voter.CombiningType>
| Enum Constant and Description |
|---|
AVERAGE |
MAJORITY |
PROBABILITY |
| Modifier and Type | Method and Description |
|---|---|
static Voter.CombiningType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Voter.CombiningType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Voter.CombiningType MAJORITY
public static final Voter.CombiningType AVERAGE
public static final Voter.CombiningType PROBABILITY
public static Voter.CombiningType[] values()
for (Voter.CombiningType c : Voter.CombiningType.values()) System.out.println(c);
public static Voter.CombiningType 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 nullCopyright © 2016. All rights reserved.