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