Enum Class Region.Id

java.lang.Object
java.lang.Enum<Region.Id>
discord4j.core.object.Region.Id
All Implemented Interfaces:
Serializable, Comparable<Region.Id>, Constable
Enclosing class:
Region

public static enum Region.Id extends Enum<Region.Id>
Represents the different non-deprecated voice region ids.
  • Enum Constant Details

    • UNKNOWN

      public static final Region.Id UNKNOWN
    • AUTOMATIC

      public static final Region.Id AUTOMATIC
    • US_WEST

      public static final Region.Id US_WEST
    • US_EAST

      public static final Region.Id US_EAST
    • US_CENTRAL

      public static final Region.Id US_CENTRAL
    • US_SOUTH

      public static final Region.Id US_SOUTH
    • SINGAPORE

      public static final Region.Id SINGAPORE
    • SOUTHAFRICA

      public static final Region.Id SOUTHAFRICA
    • SYDNEY

      public static final Region.Id SYDNEY
    • EUROPE

      public static final Region.Id EUROPE
    • BRAZIL

      public static final Region.Id BRAZIL
    • HONGKONG

      public static final Region.Id HONGKONG
    • RUSSIA

      public static final Region.Id RUSSIA
    • JAPAN

      public static final Region.Id JAPAN
    • INDIA

      public static final Region.Id INDIA
  • Method Details

    • values

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

      public static Region.Id valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      @Nullable public String getValue()
      Gets the underlying value as represented by Discord.
      Returns:
      The underlying value as represented by Discord.
    • of

      public static Region.Id of(@Nullable String value)
      Gets the enum associated with the value. It is guaranteed that invoking getValue() from the returned enum will equal (==) the supplied value.
      Parameters:
      value - The underlying value as represented by Discord.
      Returns:
      The region id.