public enum ViewOrdering extends Enum<ViewOrdering>
Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
Modifier and Type | Method and Description |
---|---|
static ViewOrdering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewOrdering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewOrdering ASCENDING
public static final ViewOrdering DESCENDING
public static ViewOrdering[] values()
for (ViewOrdering c : ViewOrdering.values()) System.out.println(c);
public static ViewOrdering 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 © 2021 Couchbase, Inc.. All rights reserved.