public static enum Image.ImageState extends Enum<Image.ImageState>
| Enum Constant and Description | 
|---|
| AVAILABLEthe image is successfully registered and available for launching | 
| DEREGISTEREDthe image is deregistered and no longer available for launching | 
| UNRECOGNIZED | 
| Modifier and Type | Method and Description | 
|---|---|
| static Image.ImageState | fromValue(String v) | 
| String | value() | 
| static Image.ImageState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Image.ImageState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Image.ImageState AVAILABLE
public static final Image.ImageState DEREGISTERED
public static final Image.ImageState UNRECOGNIZED
public static Image.ImageState[] values()
for (Image.ImageState c : Image.ImageState.values()) System.out.println(c);
public static Image.ImageState 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 Image.ImageState fromValue(String v)
Copyright © 2009-2013 jclouds. All Rights Reserved.