public enum CONTSCORINGMETHOD extends Enum<CONTSCORINGMETHOD>
Java class for CONT-SCORING-METHOD.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CONT-SCORING-METHOD"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="median"/> <enumeration value="average"/> <enumeration value="weightedAverage"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AVERAGE |
MEDIAN |
WEIGHTED_AVERAGE |
Modifier and Type | Method and Description |
---|---|
static CONTSCORINGMETHOD |
fromValue(String v) |
String |
value() |
static CONTSCORINGMETHOD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CONTSCORINGMETHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CONTSCORINGMETHOD MEDIAN
public static final CONTSCORINGMETHOD AVERAGE
public static final CONTSCORINGMETHOD WEIGHTED_AVERAGE
public static CONTSCORINGMETHOD[] values()
for (CONTSCORINGMETHOD c : CONTSCORINGMETHOD.values()) System.out.println(c);
public static CONTSCORINGMETHOD 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 CONTSCORINGMETHOD fromValue(String v)
Copyright © 2001–2017 JBoss by Red Hat. All rights reserved.