Enum Class APPrintJsonType

java.lang.Object
java.lang.Enum<APPrintJsonType>
dev.koifysh.archipelago.Print.APPrintJsonType
All Implemented Interfaces:
Serializable, Comparable<APPrintJsonType>, Constable

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

    • ItemSend

      @SerializedName("ItemSend") public static final APPrintJsonType ItemSend
      A player received an item.
    • ItemCheat

      @SerializedName("ItemCheat") public static final APPrintJsonType ItemCheat
      A player used the `!getitem` command.
    • Hint

      @SerializedName("Hint") public static final APPrintJsonType Hint
      A player hinted.
    • Join

      @SerializedName("Join") public static final APPrintJsonType Join
      A player connected.
    • Part

      @SerializedName("Part") public static final APPrintJsonType Part
      A player disconnected.
    • Chat

      @SerializedName("Chat") public static final APPrintJsonType Chat
      A player sent a chat message.
    • ServerChat

      @SerializedName("ServerChat") public static final APPrintJsonType ServerChat
      The server broadcast a message.
    • Tutorial

      @SerializedName("entrance_name") public static final APPrintJsonType Tutorial
      The client has triggered a tutorial message, such as when first connecting.
    • TagsChanged

      @SerializedName("TagsChanged") public static final APPrintJsonType TagsChanged
      A player changed their tags.
    • CommandResult

      @SerializedName("CommandResult") public static final APPrintJsonType CommandResult
      Someone (usually the client) entered an ! command.
    • AdminCommandResult

      @SerializedName("AdminCommandResult") public static final APPrintJsonType AdminCommandResult
      The client entered an !admin command.
    • Goal

      @SerializedName("Goal") public static final APPrintJsonType Goal
      A player reached their goal.
    • Release

      @SerializedName("Release") public static final APPrintJsonType Release
      A player released the remaining items in their world.
    • Collect

      @SerializedName("Collect") public static final APPrintJsonType Collect
      A player collected the remaining items for their world.
    • Countdown

      @SerializedName("Countdown") public static final APPrintJsonType Countdown
      The current server countdown has progressed.
    • Unknown

      public static final APPrintJsonType Unknown
      The Message type was not set, or is invalid.
  • Method Details

    • values

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