protected static enum AbstractTest.Service extends Enum<AbstractTest.Service>
Enum Constant and Description |
---|
COMPUTE |
IDENTITY |
NETWORK |
OBJECT_STORAGE |
Modifier and Type | Method and Description |
---|---|
static AbstractTest.Service |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractTest.Service[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractTest.Service IDENTITY
public static final AbstractTest.Service NETWORK
public static final AbstractTest.Service COMPUTE
public static final AbstractTest.Service OBJECT_STORAGE
public static AbstractTest.Service[] values()
for (AbstractTest.Service c : AbstractTest.Service.values()) System.out.println(c);
public static AbstractTest.Service 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 © 2014. All rights reserved.