Package net.runelite.api.events
Class ClanChannelChanged
- java.lang.Object
-
- net.runelite.api.events.ClanChannelChanged
-
public final class ClanChannelChanged extends Object
An event fired when the local player joins or leaves a clan channel.
-
-
Constructor Summary
Constructors Constructor Description ClanChannelChanged(ClanChannel clanChannel, int clanId, boolean guest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ClanChannel
getClanChannel()
The clan channelint
getClanId()
The clan id, or -1 for guest clanint
hashCode()
boolean
isGuest()
Whether or not this was the guest clan channelString
toString()
-
-
-
Constructor Detail
-
ClanChannelChanged
public ClanChannelChanged(@Nullable ClanChannel clanChannel, int clanId, boolean guest)
-
-
Method Detail
-
getClanChannel
@Nullable public ClanChannel getClanChannel()
The clan channel
-
getClanId
public int getClanId()
The clan id, or -1 for guest clan- See Also:
ClanID
-
isGuest
public boolean isGuest()
Whether or not this was the guest clan channel
-
-