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