Uses of Class
dev.aura.bungeechat.api.placeholder.BungeeChatContext
-
Packages that use BungeeChatContext Package Description dev.aura.bungeechat.api dev.aura.bungeechat.api.placeholder -
-
Uses of BungeeChatContext in dev.aura.bungeechat.api
Methods in dev.aura.bungeechat.api with parameters of type BungeeChatContext Modifier and Type Method Description default void
BungeeChatApi. sendChannelMessage(BungeeChatContext context)
void
BungeeChatApi. sendChannelMessage(BungeeChatContext context, ChannelType channel)
Sends a message from the sender in the context to the specified channel.void
BungeeChatApi. sendPrivateMessage(BungeeChatContext context)
Send a private message. -
Uses of BungeeChatContext in dev.aura.bungeechat.api.placeholder
Fields in dev.aura.bungeechat.api.placeholder with type parameters of type BungeeChatContext Modifier and Type Field Description static Predicate<BungeeChatContext>
BungeeChatContext. HAS_CHANNEL
Predefined Predicate to check if a context has a channel.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_MESSAGE
Predefined Predicate to check if a context has a message.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_NO_CHANNEL
Predefined Predicate to check if a context does not have a channel.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_NO_MESSAGE
Predefined Predicate to check if a context does not have a message.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_NO_SENDER
Predefined Predicate to check if a context does not have a sender.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_NO_SERVER
Predefined Predicate to check if a context does not have a server.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_NO_TARGET
Predefined Predicate to check if a context does not have a target.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_SENDER
Predefined Predicate to check if a context has a sender.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_SERVER
Predefined Predicate to check if a context has a server.static Predicate<BungeeChatContext>
BungeeChatContext. HAS_TARGET
Predefined Predicate to check if a context has a target.Methods in dev.aura.bungeechat.api.placeholder with parameters of type BungeeChatContext Modifier and Type Method Description String
ReplacementSupplier. get(BungeeChatContext context)
static Stream<BungeeChatPlaceHolder>
PlaceHolderManager. getApplicableStream(BungeeChatContext context)
String
BungeeChatPlaceHolder. getReplacement(String name, BungeeChatContext context)
String
PlaceHolder. getReplacement(String name, BungeeChatContext context)
boolean
BungeeChatPlaceHolder. isContextApplicable(BungeeChatContext context)
boolean
PlaceHolder. isContextApplicable(BungeeChatContext context)
static String
PlaceHolderManager. processMessage(String message, BungeeChatContext context)
Method parameters in dev.aura.bungeechat.api.placeholder with type arguments of type BungeeChatContext Modifier and Type Method Description void
PlaceHolder. addRequirement(Predicate<? super BungeeChatContext> requirement)
Constructor parameters in dev.aura.bungeechat.api.placeholder with type arguments of type BungeeChatContext Constructor Description PlaceHolder(String placeholder, ReplacementSupplier replacementSupplier, List<Predicate<? super BungeeChatContext>> requirements)
-