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