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