public static enum ARS.ReservationResult extends Enum<ARS.ReservationResult>
| Enum Constant and Description |
|---|
RESERVED |
WAIT_LISTED |
| Modifier and Type | Method and Description |
|---|---|
static ARS.ReservationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ARS.ReservationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARS.ReservationResult RESERVED
public static final ARS.ReservationResult WAIT_LISTED
public static ARS.ReservationResult[] values()
for (ARS.ReservationResult c : ARS.ReservationResult.values()) System.out.println(c);
public static ARS.ReservationResult 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 © 2015 Apache Accumulo Project. All rights reserved.