Enum Class RealmsRegion

java.lang.Object
java.lang.Enum<RealmsRegion>
com.mojang.realmsclient.dto.RealmsRegion
All Implemented Interfaces:
Serializable, Comparable<RealmsRegion>, Constable

public enum RealmsRegion extends Enum<RealmsRegion>
  • Enum Constant Details

    • AUSTRALIA_EAST

      public static final RealmsRegion AUSTRALIA_EAST
    • AUSTRALIA_SOUTHEAST

      public static final RealmsRegion AUSTRALIA_SOUTHEAST
    • BRAZIL_SOUTH

      public static final RealmsRegion BRAZIL_SOUTH
    • CENTRAL_INDIA

      public static final RealmsRegion CENTRAL_INDIA
    • CENTRAL_US

      public static final RealmsRegion CENTRAL_US
    • EAST_ASIA

      public static final RealmsRegion EAST_ASIA
    • EAST_US

      public static final RealmsRegion EAST_US
    • EAST_US_2

      public static final RealmsRegion EAST_US_2
    • FRANCE_CENTRAL

      public static final RealmsRegion FRANCE_CENTRAL
    • JAPAN_EAST

      public static final RealmsRegion JAPAN_EAST
    • JAPAN_WEST

      public static final RealmsRegion JAPAN_WEST
    • KOREA_CENTRAL

      public static final RealmsRegion KOREA_CENTRAL
    • NORTH_CENTRAL_US

      public static final RealmsRegion NORTH_CENTRAL_US
    • NORTH_EUROPE

      public static final RealmsRegion NORTH_EUROPE
    • SOUTH_CENTRAL_US

      public static final RealmsRegion SOUTH_CENTRAL_US
    • SOUTHEAST_ASIA

      public static final RealmsRegion SOUTHEAST_ASIA
    • SWEDEN_CENTRAL

      public static final RealmsRegion SWEDEN_CENTRAL
    • UAE_NORTH

      public static final RealmsRegion UAE_NORTH
    • UK_SOUTH

      public static final RealmsRegion UK_SOUTH
    • WEST_CENTRAL_US

      public static final RealmsRegion WEST_CENTRAL_US
    • WEST_EUROPE

      public static final RealmsRegion WEST_EUROPE
    • WEST_US

      public static final RealmsRegion WEST_US
    • WEST_US_2

      public static final RealmsRegion WEST_US_2
    • INVALID_REGION

      public static final RealmsRegion INVALID_REGION
  • Field Details

    • nameId

      public final String nameId
    • translationKey

      public final String translationKey
  • Constructor Details

    • RealmsRegion

      private RealmsRegion(String pNameId, String pTranslationKey)
  • Method Details

    • values

      public static RealmsRegion[] 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 RealmsRegion 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
    • findByNameId

      @Nullable public static RealmsRegion findByNameId(String pNameId)