Enum DataSplitter.TargetSet
- java.lang.Object
-
- java.lang.Enum<DataSplitter.TargetSet>
-
- de.tudarmstadt.ukp.inception.recommendation.api.evaluation.DataSplitter.TargetSet
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DataSplitter.TargetSet>
- Enclosing interface:
- DataSplitter
public static enum DataSplitter.TargetSet extends java.lang.Enum<DataSplitter.TargetSet>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataSplitter.TargetSet
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DataSplitter.TargetSet[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRAIN
public static final DataSplitter.TargetSet TRAIN
-
TEST
public static final DataSplitter.TargetSet TEST
-
IGNORE
public static final DataSplitter.TargetSet IGNORE
-
-
Method Detail
-
values
public static DataSplitter.TargetSet[] 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 (DataSplitter.TargetSet c : DataSplitter.TargetSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataSplitter.TargetSet valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-