Package net.md_5.bungee.api.event
Class PluginMessageEvent
- java.lang.Object
-
- net.md_5.bungee.api.plugin.Event
-
- net.md_5.bungee.api.event.TargetedEvent
-
- net.md_5.bungee.api.event.PluginMessageEvent
-
- All Implemented Interfaces:
Cancellable
public class PluginMessageEvent extends TargetedEvent implements Cancellable
Event called when a plugin message is sent to the client or server.
-
-
Constructor Summary
Constructors Constructor Description PluginMessageEvent(Connection sender, Connection receiver, String tag, byte[] data)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)byte[]getData()Data contained in this plugin message.StringgetTag()Tag specified for this plugin message.inthashCode()booleanisCancelled()Cancelled state.voidsetCancelled(boolean cancelled)Cancelled state.StringtoString()-
Methods inherited from class net.md_5.bungee.api.event.TargetedEvent
getReceiver, getSender
-
-
-
-
Constructor Detail
-
PluginMessageEvent
public PluginMessageEvent(Connection sender, Connection receiver, String tag, byte[] data)
-
-
Method Detail
-
isCancelled
public boolean isCancelled()
Cancelled state.- Specified by:
isCancelledin interfaceCancellable- Returns:
- the cancelled state of this event
-
getTag
public String getTag()
Tag specified for this plugin message.
-
getData
public byte[] getData()
Data contained in this plugin message.
-
setCancelled
public void setCancelled(boolean cancelled)
Cancelled state.- Specified by:
setCancelledin interfaceCancellable- Parameters:
cancelled- the state to set
-
toString
public String toString()
- Overrides:
toStringin classTargetedEvent
-
equals
public boolean equals(Object o)
- Overrides:
equalsin classTargetedEvent
-
canEqual
protected boolean canEqual(Object other)
- Overrides:
canEqualin classTargetedEvent
-
hashCode
public int hashCode()
- Overrides:
hashCodein classTargetedEvent
-
-