public static enum ColumnWithDirection.Direction extends Enum<ColumnWithDirection.Direction>
Modifier and Type | Method and Description |
---|---|
int |
getDirectionInt() |
static ColumnWithDirection.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnWithDirection.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnWithDirection.Direction ASC
public static final ColumnWithDirection.Direction DESC
public static ColumnWithDirection.Direction[] values()
for (ColumnWithDirection.Direction c : ColumnWithDirection.Direction.values()) System.out.println(c);
public static ColumnWithDirection.Direction 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 nullpublic int getDirectionInt()
Copyright © 2011–2023 The Apache Software Foundation. All rights reserved.