Enum Class Packets

java.lang.Object
java.lang.Enum<Packets>
network.protocol.Packets
All Implemented Interfaces:
Serializable, Comparable<Packets>, Constable

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

    • ConnectionInfo

      public static final Packets ConnectionInfo
    • KeepAlive

      public static final Packets KeepAlive
    • Disconnect

      public static final Packets Disconnect
    • Login

      public static final Packets Login
    • PlayerJoin

      public static final Packets PlayerJoin
    • PlayerLeave

      public static final Packets PlayerLeave
    • StartGame

      public static final Packets StartGame
    • ChangeCell

      public static final Packets ChangeCell
    • EndGame

      public static final Packets EndGame
    • UpdatePlayerScore

      public static final Packets UpdatePlayerScore
  • Method Details

    • values

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