Enum Class DisconnectEvent.LoginStatus

java.lang.Object
java.lang.Enum<DisconnectEvent.LoginStatus>
com.velocitypowered.api.event.connection.DisconnectEvent.LoginStatus
All Implemented Interfaces:
Serializable, Comparable<DisconnectEvent.LoginStatus>, Constable
Enclosing class:
DisconnectEvent

public static enum DisconnectEvent.LoginStatus extends Enum<DisconnectEvent.LoginStatus>
The status of the connection when the player disconnected.
  • Enum Constant Details

    • SUCCESSFUL_LOGIN

      public static final DisconnectEvent.LoginStatus SUCCESSFUL_LOGIN
      The player completed a successful login to the proxy.
    • CONFLICTING_LOGIN

      public static final DisconnectEvent.LoginStatus CONFLICTING_LOGIN
      The player was disconnected because another login with the same UUID occurred.
    • CANCELLED_BY_USER

      public static final DisconnectEvent.LoginStatus CANCELLED_BY_USER
      The player voluntarily disconnected before completing the login.
    • CANCELLED_BY_PROXY

      public static final DisconnectEvent.LoginStatus CANCELLED_BY_PROXY
      The proxy disconnected the player before login completed.
    • CANCELLED_BY_USER_BEFORE_COMPLETE

      public static final DisconnectEvent.LoginStatus CANCELLED_BY_USER_BEFORE_COMPLETE
      The player disconnected on their own, but only after starting the login and before completing it.
    • PRE_SERVER_JOIN

      public static final DisconnectEvent.LoginStatus PRE_SERVER_JOIN
      The player disconnected before joining the initial backend server.
  • Method Details

    • values

      public static DisconnectEvent.LoginStatus[] 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 DisconnectEvent.LoginStatus 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