Package org.openstack4j.api
Enum AbstractTest.Service
- java.lang.Object
-
- java.lang.Enum<AbstractTest.Service>
-
- org.openstack4j.api.AbstractTest.Service
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractTest.Service>
- Enclosing class:
- AbstractTest
protected static enum AbstractTest.Service extends Enum<AbstractTest.Service>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP_CATALOGARTIFACTBARBICANBLOCK_STORAGECLUSTERINGCOMPUTEDATABASEDNSIDENTITYIMAGEMAGNUMMETERINGNETWORKOBJECT_STORAGEOCTAVIAORCHESTRATIONSAHARASHARETACKERTELEMETRYWORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractTest.ServicevalueOf(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.
-
-
-
Enum Constant Detail
-
IDENTITY
public static final AbstractTest.Service IDENTITY
-
NETWORK
public static final AbstractTest.Service NETWORK
-
OCTAVIA
public static final AbstractTest.Service OCTAVIA
-
COMPUTE
public static final AbstractTest.Service COMPUTE
-
BLOCK_STORAGE
public static final AbstractTest.Service BLOCK_STORAGE
-
METERING
public static final AbstractTest.Service METERING
-
TELEMETRY
public static final AbstractTest.Service TELEMETRY
-
SAHARA
public static final AbstractTest.Service SAHARA
-
SHARE
public static final AbstractTest.Service SHARE
-
OBJECT_STORAGE
public static final AbstractTest.Service OBJECT_STORAGE
-
BARBICAN
public static final AbstractTest.Service BARBICAN
-
MAGNUM
public static final AbstractTest.Service MAGNUM
-
ORCHESTRATION
public static final AbstractTest.Service ORCHESTRATION
-
DATABASE
public static final AbstractTest.Service DATABASE
-
TACKER
public static final AbstractTest.Service TACKER
-
IMAGE
public static final AbstractTest.Service IMAGE
-
ARTIFACT
public static final AbstractTest.Service ARTIFACT
-
CLUSTERING
public static final AbstractTest.Service CLUSTERING
-
APP_CATALOG
public static final AbstractTest.Service APP_CATALOG
-
DNS
public static final AbstractTest.Service DNS
-
WORKFLOW
public static final AbstractTest.Service WORKFLOW
-
-
Method Detail
-
values
public static AbstractTest.Service[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AbstractTest.Service c : AbstractTest.Service.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractTest.Service valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-