de.jstacs.data
Enum Sample.PartitionMethod

java.lang.Object
  extended by java.lang.Enum<Sample.PartitionMethod>
      extended by de.jstacs.data.Sample.PartitionMethod
All Implemented Interfaces:
Serializable, Comparable<Sample.PartitionMethod>
Enclosing class:
Sample

public static enum Sample.PartitionMethod
extends Enum<Sample.PartitionMethod>

This enum defines different partition methods for a Sample.

Author:
Jens Keilwagen
See Also:
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

PARTITION_BY_NUMBER_OF_ELEMENTS

public static final Sample.PartitionMethod PARTITION_BY_NUMBER_OF_ELEMENTS
This value indicates that the Sample will be split by the number of elements.


PARTITION_BY_NUMBER_OF_SYMBOLS

public static final Sample.PartitionMethod PARTITION_BY_NUMBER_OF_SYMBOLS
This value indicates that the Sample will be split by the number of "symbols".


PARTITION_BY_WEIGHTS

public static final Sample.PartitionMethod PARTITION_BY_WEIGHTS
This value indicates that the Sample will be split by weights of the sequences.

Method Detail

values

public static Sample.PartitionMethod[] 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 (Sample.PartitionMethod c : Sample.PartitionMethod.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Sample.PartitionMethod 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 name
NullPointerException - if the argument is null