public static enum CorpusStorageManager.ResultOrder extends Enum<CorpusStorageManager.ResultOrder>
| Enum Constant and Description |
|---|
Inverted
Inverted the order of
Normal |
Normal
Order results by their document name and the the text position of the match.
|
NotSorted
Results are not ordered at all, but also not actively randomized.
|
Randomized
A random ordering which is not stable.
|
| Modifier and Type | Field and Description |
|---|---|
protected int |
capiVal |
| Modifier and Type | Method and Description |
|---|---|
static CorpusStorageManager.ResultOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CorpusStorageManager.ResultOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CorpusStorageManager.ResultOrder Normal
public static final CorpusStorageManager.ResultOrder Inverted
Normalpublic static final CorpusStorageManager.ResultOrder Randomized
public static final CorpusStorageManager.ResultOrder NotSorted
public static CorpusStorageManager.ResultOrder[] values()
for (CorpusStorageManager.ResultOrder c : CorpusStorageManager.ResultOrder.values()) System.out.println(c);
public static CorpusStorageManager.ResultOrder 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 nullCopyright © 2019 Thomas Krause. All rights reserved.