Enum VcapServiceType
- java.lang.Object
-
- java.lang.Enum<VcapServiceType>
-
- com.azure.spring.cloudfoundry.environment.VcapServiceType
-
- All Implemented Interfaces:
Serializable,Comparable<VcapServiceType>
public enum VcapServiceType extends Enum<VcapServiceType>
enum VcapServiceType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AZURE_COSMOSDBAzure Cosmos DBAZURE_REDISCACHEAzure Redis cacheAZURE_SERVICEBUSAzure ServiceBusAZURE_SQLDBAzure SQL DbAZURE_STORAGEAzure Storage
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static VcapServiceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static VcapServiceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AZURE_REDISCACHE
public static final VcapServiceType AZURE_REDISCACHE
Azure Redis cache
-
AZURE_COSMOSDB
public static final VcapServiceType AZURE_COSMOSDB
Azure Cosmos DB
-
AZURE_STORAGE
public static final VcapServiceType AZURE_STORAGE
Azure Storage
-
AZURE_SQLDB
public static final VcapServiceType AZURE_SQLDB
Azure SQL Db
-
AZURE_SERVICEBUS
public static final VcapServiceType AZURE_SERVICEBUS
Azure ServiceBus
-
-
Method Detail
-
values
public static VcapServiceType[] 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 (VcapServiceType c : VcapServiceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VcapServiceType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<VcapServiceType>
-
-