Enum PricingTier
- java.lang.Object
-
- java.lang.Enum<PricingTier>
-
- com.databricks.sdk.service.provisioning.PricingTier
-
- All Implemented Interfaces:
Serializable,Comparable<PricingTier>
@Generated public enum PricingTier extends Enum<PricingTier>
The pricing tier of the workspace. For pricing tier information, see [AWS Pricing].[AWS Pricing]: https://databricks.com/product/aws-pricing
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMUNITY_EDITIONDEDICATEDENTERPRISEPREMIUMSTANDARDUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PricingTiervalueOf(String name)Returns the enum constant of this type with the specified name.static PricingTier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMUNITY_EDITION
public static final PricingTier COMMUNITY_EDITION
-
DEDICATED
public static final PricingTier DEDICATED
-
ENTERPRISE
public static final PricingTier ENTERPRISE
-
PREMIUM
public static final PricingTier PREMIUM
-
STANDARD
public static final PricingTier STANDARD
-
UNKNOWN
public static final PricingTier UNKNOWN
-
-
Method Detail
-
values
public static PricingTier[] 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 (PricingTier c : PricingTier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PricingTier 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
-
-