protected static enum AbstractTest.Service extends Enum<AbstractTest.Service>
| Enum Constant and Description |
|---|
BLOCK_STORAGE |
COMPUTE |
IDENTITY |
METERING |
NETWORK |
OBJECT_STORAGE |
SHARE |
TELEMETRY |
| 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 BLOCK_STORAGE
public static final AbstractTest.Service METERING
public static final AbstractTest.Service TELEMETRY
public static final AbstractTest.Service SHARE
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 © 2016. All Rights Reserved.