Package dev.koifysh.archipelago.Print
Enum Class APPrintJsonType
- All Implemented Interfaces:
Serializable,Comparable<APPrintJsonType>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe client entered an !admin command.A player sent a chat message.A player collected the remaining items for their world.Someone (usually the client) entered an ! command.The current server countdown has progressed.A player reached their goal.A player hinted.A player used the `!getitem` command.A player received an item.A player connected.A player disconnected.A player released the remaining items in their world.The server broadcast a message.A player changed their tags.The client has triggered a tutorial message, such as when first connecting.The Message type was not set, or is invalid. -
Method Summary
Modifier and TypeMethodDescriptionstatic APPrintJsonTypeReturns the enum constant of this class with the specified name.static APPrintJsonType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ItemSend
A player received an item. -
ItemCheat
A player used the `!getitem` command. -
Hint
A player hinted. -
Join
A player connected. -
Part
A player disconnected. -
Chat
A player sent a chat message. -
ServerChat
The server broadcast a message. -
Tutorial
The client has triggered a tutorial message, such as when first connecting. -
TagsChanged
A player changed their tags. -
CommandResult
Someone (usually the client) entered an ! command. -
AdminCommandResult
The client entered an !admin command. -
Goal
A player reached their goal. -
Release
A player released the remaining items in their world. -
Collect
A player collected the remaining items for their world. -
Countdown
The current server countdown has progressed. -
Unknown
The Message type was not set, or is invalid.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-