Enum CdpRegion

java.lang.Object
java.lang.Enum<CdpRegion>
com.cloudera.cdp.client.CdpRegion
All Implemented Interfaces:
Serializable, Comparable<CdpRegion>, java.lang.constant.Constable

public enum CdpRegion extends Enum<CdpRegion>
Enum class for CDP regions.
  • Enum Constant Details

    • US_WEST_1

      public static final CdpRegion US_WEST_1
    • EU_1

      public static final CdpRegion EU_1
    • AP_1

      public static final CdpRegion AP_1
    • USG_1

      public static final CdpRegion USG_1
  • Method Details

    • values

      public static CdpRegion[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CdpRegion 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
    • toString

      public String toString()
      Overrides toString() method to easily substitute enum with its string value.
      Overrides:
      toString in class Enum<CdpRegion>