public static enum ColumnOrder.ColumnOrderName extends Enum<ColumnOrder.ColumnOrderName>
| Enum Constant and Description |
|---|
TYPE_DEFINED_ORDER
Type defined order meaning that the comparison order of the elements are based on its type.
|
UNDEFINED
Representing the case when the defined column order is undefined (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static ColumnOrder.ColumnOrderName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnOrder.ColumnOrderName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnOrder.ColumnOrderName UNDEFINED
public static final ColumnOrder.ColumnOrderName TYPE_DEFINED_ORDER
public static ColumnOrder.ColumnOrderName[] values()
for (ColumnOrder.ColumnOrderName c : ColumnOrder.ColumnOrderName.values()) System.out.println(c);
public static ColumnOrder.ColumnOrderName 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 © 2024 The Apache Software Foundation. All rights reserved.