public enum SortBehavior extends java.lang.Enum<SortBehavior>
| Enum Constant and Description |
|---|
ORDERED
ordered results.
|
SORTED
sorted results.
|
UNORDERED
unordered results.
|
| Modifier and Type | Field and Description |
|---|---|
private static SortBehavior |
defaultSortBehavior
Default sort behavior.
|
private static org.slf4j.Logger |
LOGGER
Logger for this class.
|
static java.lang.String |
SORT_BEHAVIOR
Sort behavior name.
|
| Modifier and Type | Method and Description |
|---|---|
static SortBehavior |
getDefaultSortBehavior()
Returns the default sort behavior.
|
static SortBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SortBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortBehavior UNORDERED
public static final SortBehavior ORDERED
public static final SortBehavior SORTED
public static final java.lang.String SORT_BEHAVIOR
private static final org.slf4j.Logger LOGGER
private static SortBehavior defaultSortBehavior
public static SortBehavior[] values()
for (SortBehavior c : SortBehavior.values()) System.out.println(c);
public static SortBehavior valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static SortBehavior getDefaultSortBehavior()