Enum VcapServiceType

    • 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 name
        NullPointerException - if the argument is null