public enum LeaseStatus extends Enum<LeaseStatus>
Enum Constant and Description |
---|
LOCKED |
UNLOCKED |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static LeaseStatus |
fromValue(String type) |
String |
toString() |
String |
value() |
static LeaseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LeaseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LeaseStatus LOCKED
public static final LeaseStatus UNLOCKED
public static final LeaseStatus UNRECOGNIZED
public static LeaseStatus[] values()
for (LeaseStatus c : LeaseStatus.values()) System.out.println(c);
public static LeaseStatus 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 String value()
public String toString()
toString
in class Enum<LeaseStatus>
public static LeaseStatus fromValue(String type)
Copyright © 2009-2012 jclouds. All Rights Reserved.