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