|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SortBehavior>
org.ldaptive.SortBehavior
public enum SortBehavior
Enum to define how ldap result, entries, and attribute data should be sorted. Default sort behavior can be controlled with the org.ldaptive.sortBehavior system property. This property must be the fully qualified name of a sort behavior.
| Enum Constant Summary | |
|---|---|
ORDERED
ordered results. |
|
SORTED
sorted results. |
|
UNORDERED
unordered results. |
|
| Field Summary | |
|---|---|
static String |
SORT_BEHAVIOR
Sort behavior name. |
| Method Summary | |
|---|---|
static SortBehavior |
getDefaultSortBehavior()
Returns the default sort behavior. |
static SortBehavior |
valueOf(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. |
| 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 SortBehavior UNORDERED
public static final SortBehavior ORDERED
public static final SortBehavior SORTED
| Field Detail |
|---|
public static final String SORT_BEHAVIOR
| Method Detail |
|---|
public static SortBehavior[] values()
for (SortBehavior c : SortBehavior.values()) System.out.println(c);
public static SortBehavior 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 nullpublic static SortBehavior getDefaultSortBehavior()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||