Package com.comphenix.protocol.events
Enum Class ListenerOptions
- All Implemented Interfaces:
Serializable,Comparable<ListenerOptions>,Constable
Represents additional options a listener may require.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNotify ProtocolLib thatPacketListener.onPacketSending(PacketEvent)is thread safe.Deprecated.Do not verify that the owning plugin has a vaid plugin.yml.Notify ProtocolLib thatPacketListener.onPacketReceiving(PacketEvent)must be executed on the main server thread. -
Method Summary
Modifier and TypeMethodDescriptionstatic ListenerOptionsReturns the enum constant of this class with the specified name.static ListenerOptions[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISABLE_GAMEPHASE_DETECTION
Deprecated.Disable the automatic game phase detection that will normally forceGamePhase.LOGINwhen a packet ID is known to be transmitted during login. -
SKIP_PLUGIN_VERIFIER
Do not verify that the owning plugin has a vaid plugin.yml. -
ASYNC
Notify ProtocolLib thatPacketListener.onPacketSending(PacketEvent)is thread safe. -
SYNC
Notify ProtocolLib thatPacketListener.onPacketReceiving(PacketEvent)must be executed on the main server thread.
-
-
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
-