|
||||||||||
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.WeightedDataSetFactory.SortOperation>
de.jstacs.data.DataSet.WeightedDataSetFactory.SortOperation
public static enum DataSet.WeightedDataSetFactory.SortOperation
This enum
defines the different types of sort operations
that can be performed while creating a DataSet.WeightedDataSetFactory
.
Enum Constant Summary | |
---|---|
NO_SORT
Indicates that no sorting shall be done after eliminating Sequence s that occur more than once. |
|
SORT_BY_SEQUENCE
Indicates that the Sequence s shall be sorted after
eliminating Sequence s that occur more than once. |
|
SORT_BY_WEIGHTS
This value indicates that the Sequence s shall be sorted
according to their weights after eliminating Sequence s
that occur more than once. |
Method Summary | |
---|---|
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. |
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.WeightedDataSetFactory.SortOperation NO_SORT
Sequence
s that occur more than once.
public static final DataSet.WeightedDataSetFactory.SortOperation SORT_BY_SEQUENCE
Sequence
s shall be sorted after
eliminating Sequence
s that occur more than once. Probably
this is the slowest option.
public static final DataSet.WeightedDataSetFactory.SortOperation SORT_BY_WEIGHTS
Sequence
s shall be sorted
according to their weights after eliminating Sequence
s
that occur more than once.
Method Detail |
---|
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 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 |