|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Sample.PartitionMethod>
de.jstacs.data.Sample.PartitionMethod
public static enum Sample.PartitionMethod
This enum defines different partition methods for a
Sample.
Sample.partition(PartitionMethod, double...),
Sample.partition(int, PartitionMethod),
Sample.partition(double, PartitionMethod, int)| Enum Constant Summary | |
|---|---|
PARTITION_BY_NUMBER_OF_ELEMENTS
This value indicates that the Sample will be split by the
number of elements. |
|
PARTITION_BY_NUMBER_OF_SYMBOLS
This value indicates that the Sample will be split by the
number of "symbols". |
|
PARTITION_BY_WEIGHTS
This value indicates that the Sample will be split by weights of the sequences. |
|
| Method Summary | |
|---|---|
static Sample.PartitionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Sample.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 Sample.PartitionMethod PARTITION_BY_NUMBER_OF_ELEMENTS
Sample will be split by the
number of elements.
public static final Sample.PartitionMethod PARTITION_BY_NUMBER_OF_SYMBOLS
Sample will be split by the
number of "symbols".
public static final Sample.PartitionMethod PARTITION_BY_WEIGHTS
Sample will be split by weights of the sequences.
| Method Detail |
|---|
public static Sample.PartitionMethod[] values()
for (Sample.PartitionMethod c : Sample.PartitionMethod.values()) System.out.println(c);
public static Sample.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 | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||