|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DataSet.PartitionMethod>
de.jstacs.data.DataSet.PartitionMethod
public static enum DataSet.PartitionMethod
This enum
defines different partition methods for a
DataSet
.
DataSet.partition(PartitionMethod, double...)
,
DataSet.partition(int, PartitionMethod)
,
DataSet.partition(double, PartitionMethod, int)
,
DataSet.partition(double[], PartitionMethod, double...)
,
DataSet.partition(double[], int, PartitionMethod)
Enum Constant Summary | |
---|---|
PARTITION_BY_NUMBER_OF_ELEMENTS
This value indicates that the DataSet will be split by the
number of elements. |
|
PARTITION_BY_NUMBER_OF_SYMBOLS
This value indicates that the DataSet will be split by the
number of "symbols". |
|
PARTITION_BY_WEIGHTS
This value indicates that the DataSet will be split by weights of the sequences. |
Method Summary | |
---|---|
static DataSet.PartitionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataSet.PartitionMethod[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DataSet.PartitionMethod PARTITION_BY_NUMBER_OF_ELEMENTS
DataSet
will be split by the
number of elements.
public static final DataSet.PartitionMethod PARTITION_BY_NUMBER_OF_SYMBOLS
DataSet
will be split by the
number of "symbols".
public static final DataSet.PartitionMethod PARTITION_BY_WEIGHTS
DataSet
will be split by weights of the sequences.
If this is not possible (e.g. weights == null
), it works like PARTITION_BY_NUMBER_OF_ELEMENTS
.
DataSet.partition(double[], PartitionMethod, double...)
,
DataSet.partition(double[], int, PartitionMethod)
Method Detail |
---|
public static DataSet.PartitionMethod[] values()
for (DataSet.PartitionMethod c : DataSet.PartitionMethod.values()) System.out.println(c);
public static DataSet.PartitionMethod valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |