public static enum PostProcessingArgs.SortDirection extends Enum<PostProcessingArgs.SortDirection>
| Enum Constant and Description |
|---|
ASC
Ascending sort order.
|
DESC
Descending sort order.
|
| Modifier and Type | Method and Description |
|---|---|
static PostProcessingArgs.SortDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostProcessingArgs.SortDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostProcessingArgs.SortDirection ASC
public static final PostProcessingArgs.SortDirection DESC
public static PostProcessingArgs.SortDirection[] values()
for (PostProcessingArgs.SortDirection c : PostProcessingArgs.SortDirection.values()) System.out.println(c);
public static PostProcessingArgs.SortDirection 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 © 2025 lettuce.io. All rights reserved.