Enum Region

    • Enum Constant Detail

      • SOUTHEAST_AUSTRALIA

        public static final Region SOUTHEAST_AUSTRALIA
      • CANADA

        public static final Region CANADA
      • GERMANY

        public static final Region GERMANY
      • SOUTH_UK

        public static final Region SOUTH_UK
      • JAPAN

        public static final Region JAPAN
      • WEST_EUROPE

        public static final Region WEST_EUROPE
      • SINGAPORE

        public static final Region SINGAPORE
      • EAST_US

        public static final Region EAST_US
      • WEST_US

        public static final Region WEST_US
    • Method Detail

      • values

        public static Region[] 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 (Region c : Region.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Region 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
      • fromValue

        public static Region fromValue​(String text)