Enum Class WorldResult

java.lang.Object
java.lang.Enum<WorldResult>
net.botwithus.rs3.game.login.WorldResult
All Implemented Interfaces:
Serializable, Comparable<WorldResult>, Constable

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

    • SAME_WORLD

      public static final WorldResult SAME_WORLD
    • LOGIN_IN_PROGRESS

      public static final WorldResult LOGIN_IN_PROGRESS
    • NOT_LOGGED_IN

      public static final WorldResult NOT_LOGGED_IN
    • SUCCESS

      public static final WorldResult SUCCESS
    • FAILED

      public static final WorldResult FAILED
  • Method Details

    • values

      public static WorldResult[] 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 WorldResult 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