Uses of Interface
dev.aura.bungeechat.api.account.BungeeChatAccount
-
Packages that use BungeeChatAccount Package Description dev.aura.bungeechat.api.account dev.aura.bungeechat.api.filter dev.aura.bungeechat.api.hook dev.aura.bungeechat.api.placeholder -
-
Uses of BungeeChatAccount in dev.aura.bungeechat.api.account
Classes in dev.aura.bungeechat.api.account that implement BungeeChatAccount Modifier and Type Class Description class
ConsoleAccount
Fields in dev.aura.bungeechat.api.account declared as BungeeChatAccount Modifier and Type Field Description protected static BungeeChatAccount
AccountManager. consoleAccount
Fields in dev.aura.bungeechat.api.account with type parameters of type BungeeChatAccount Modifier and Type Field Description protected static ConcurrentMap<UUID,BungeeChatAccount>
AccountManager. accounts
Methods in dev.aura.bungeechat.api.account that return BungeeChatAccount Modifier and Type Method Description BungeeChatAccount
AccountInfo. getAccount()
static BungeeChatAccount
AccountManager. getConsoleAccount()
Methods in dev.aura.bungeechat.api.account that return types with arguments of type BungeeChatAccount Modifier and Type Method Description static Optional<BungeeChatAccount>
AccountManager. getAccount(String name)
static Optional<BungeeChatAccount>
AccountManager. getAccount(UUID uuid)
static List<BungeeChatAccount>
AccountManager. getAccounts()
static List<BungeeChatAccount>
AccountManager. getAccountsForPartialName(String partialName)
static List<BungeeChatAccount>
AccountManager. getPlayerAccounts()
Methods in dev.aura.bungeechat.api.account with parameters of type BungeeChatAccount Modifier and Type Method Description default void
BungeeChatAccount. addIgnore(BungeeChatAccount account)
default boolean
BungeeChatAccount. hasIgnored(BungeeChatAccount account)
default void
BungeeChatAccount. removeIgnore(BungeeChatAccount account)
void
BungeeChatAccountStorage. save(BungeeChatAccount account)
static void
AccountManager. saveAccount(BungeeChatAccount account)
static void
AccountManager. unloadAccount(BungeeChatAccount account)
Constructors in dev.aura.bungeechat.api.account with parameters of type BungeeChatAccount Constructor Description AccountInfo(BungeeChatAccount account, boolean forceSave, boolean newAccount)
-
Uses of BungeeChatAccount in dev.aura.bungeechat.api.filter
Methods in dev.aura.bungeechat.api.filter with parameters of type BungeeChatAccount Modifier and Type Method Description String
BungeeChatFilter. applyFilter(BungeeChatAccount sender, String message)
String
FunctionFilter. applyFilter(BungeeChatAccount sender, String message)
static String
FilterManager. applyFilters(BungeeChatAccount sender, String message)
-
Uses of BungeeChatAccount in dev.aura.bungeechat.api.hook
Methods in dev.aura.bungeechat.api.hook with parameters of type BungeeChatAccount Modifier and Type Method Description static String
HookManager. getFullDisplayName(BungeeChatAccount account)
static String
HookManager. getFullName(BungeeChatAccount account)
Optional<String>
BungeeChatHook. getPrefix(BungeeChatAccount account)
Get the active prefix for the passed account.static String
HookManager. getPrefix(BungeeChatAccount account)
Optional<String>
BungeeChatHook. getSuffix(BungeeChatAccount account)
Get the active suffix for the passed account.static String
HookManager. getSuffix(BungeeChatAccount account)
-
Uses of BungeeChatAccount in dev.aura.bungeechat.api.placeholder
Methods in dev.aura.bungeechat.api.placeholder that return types with arguments of type BungeeChatAccount Modifier and Type Method Description Optional<BungeeChatAccount>
BungeeChatContext. getSender()
Optional<BungeeChatAccount>
BungeeChatContext. getTarget()
Methods in dev.aura.bungeechat.api.placeholder with parameters of type BungeeChatAccount Modifier and Type Method Description void
BungeeChatContext. setSender(BungeeChatAccount sender)
void
BungeeChatContext. setTarget(BungeeChatAccount target)
Method parameters in dev.aura.bungeechat.api.placeholder with type arguments of type BungeeChatAccount Modifier and Type Method Description void
BungeeChatContext. setSender(Optional<BungeeChatAccount> sender)
void
BungeeChatContext. setTarget(Optional<BungeeChatAccount> target)
Constructors in dev.aura.bungeechat.api.placeholder with parameters of type BungeeChatAccount Constructor Description BungeeChatContext(BungeeChatAccount sender)
BungeeChatContext(BungeeChatAccount sender, BungeeChatAccount target)
BungeeChatContext(BungeeChatAccount sender, BungeeChatAccount target, String message)
BungeeChatContext(BungeeChatAccount sender, String message)
BungeeChatContext(BungeeChatAccount sender, String message, String server)
-