public static enum DataSet.WeightedDataSetFactory.SortOperation extends Enum<DataSet.WeightedDataSetFactory.SortOperation>
enum defines the different types of sort operations
that can be performed while creating a DataSet.WeightedDataSetFactory.| Enum Constant and Description |
|---|
NO_SORT
Indicates that no sorting shall be done after eliminating
Sequences that occur more than once. |
SORT_BY_SEQUENCE
|
SORT_BY_WEIGHTS
|
| Modifier and Type | Method and Description |
|---|---|
static DataSet.WeightedDataSetFactory.SortOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSet.WeightedDataSetFactory.SortOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSet.WeightedDataSetFactory.SortOperation NO_SORT
Sequences that occur more than once.public static final DataSet.WeightedDataSetFactory.SortOperation SORT_BY_SEQUENCE
public static final DataSet.WeightedDataSetFactory.SortOperation SORT_BY_WEIGHTS
public static DataSet.WeightedDataSetFactory.SortOperation[] values()
for (DataSet.WeightedDataSetFactory.SortOperation c : DataSet.WeightedDataSetFactory.SortOperation.values()) System.out.println(c);
public static DataSet.WeightedDataSetFactory.SortOperation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null