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