|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Sample.WeightedSampleFactory.SortOperation>
de.jstacs.data.Sample.WeightedSampleFactory.SortOperation
public static enum Sample.WeightedSampleFactory.SortOperation
This enum defines the different types of sort operation that can be performed while creating a Sample.WeightedSampleFactory
.
Enum Constant Summary | |
---|---|
NO_SORT
This value indicates that no sorting shall be done after eliminating sequences that occur more than once. |
|
SORT_BY_SEQUENCE
This value indicates that the sequences shall be sorted after eliminating sequences that occur more than once. |
|
SORT_BY_WEIGHTS
This value indicates that the sequences shall be sorted according to their weights after eliminating sequences that occur more than once. |
Method Summary | |
---|---|
static Sample.WeightedSampleFactory.SortOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Sample.WeightedSampleFactory.SortOperation[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Sample.WeightedSampleFactory.SortOperation NO_SORT
public static final Sample.WeightedSampleFactory.SortOperation SORT_BY_SEQUENCE
public static final Sample.WeightedSampleFactory.SortOperation SORT_BY_WEIGHTS
Method Detail |
---|
public static final Sample.WeightedSampleFactory.SortOperation[] values()
for(Sample.WeightedSampleFactory.SortOperation c : Sample.WeightedSampleFactory.SortOperation.values()) System.out.println(c);
public static Sample.WeightedSampleFactory.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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |