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