Enum LinearSelfConfigurator.Strategy
- java.lang.Object
-
- java.lang.Enum<LinearSelfConfigurator.Strategy>
-
- org.aksw.limes.core.ml.algorithm.euclid.LinearSelfConfigurator.Strategy
-
- All Implemented Interfaces:
Serializable,Comparable<LinearSelfConfigurator.Strategy>
- Enclosing class:
- LinearSelfConfigurator
public static enum LinearSelfConfigurator.Strategy extends Enum<LinearSelfConfigurator.Strategy>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LinearSelfConfigurator.StrategyvalueOf(String name)Returns the enum constant of this type with the specified name.static LinearSelfConfigurator.Strategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FMEASURE
public static final LinearSelfConfigurator.Strategy FMEASURE
-
THRESHOLD
public static final LinearSelfConfigurator.Strategy THRESHOLD
-
PRECISION
public static final LinearSelfConfigurator.Strategy PRECISION
-
RECALL
public static final LinearSelfConfigurator.Strategy RECALL
-
-
Method Detail
-
values
public static LinearSelfConfigurator.Strategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LinearSelfConfigurator.Strategy c : LinearSelfConfigurator.Strategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LinearSelfConfigurator.Strategy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-