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