Uses of Enum Class
nl.minetopiasdb.api.enums.BankAccountType
Packages that use BankAccountType
Package
Description
Package that contains the API methods for banking
Package that contains the enums used in MinetopiaSDB
Package that contains all of the banking related MinetopiaSDB v2 events
-
Uses of BankAccountType in nl.minetopiasdb.api.banking
Methods in nl.minetopiasdb.api.banking that return BankAccountTypeModifier and TypeMethodDescriptionBankaccount.getType()Get the BankaccountType of this bankaccountMethods in nl.minetopiasdb.api.banking with parameters of type BankAccountTypeModifier and TypeMethodDescriptionintBankUtils.create(BankAccountType type) Create a bankaccount of the given type.BankUtils.getAccounts(UUID uuid, BankAccountType... accountTypes) Get a list of bankaccounts where this user is authorised of a specificBankAccountType.BankUtils.getAccounts(BankAccountType... accountTypes) Get a list of bankaccounts with specific type(s)voidBankingGUI.open(org.bukkit.entity.Player player, org.bukkit.OfflinePlayer target, BankAccountType type, int id) Open the bank account for provided playerstatic voidSelectorGUI.openAccountSelector(org.bukkit.entity.Player player, org.bukkit.OfflinePlayer target, BankAccountType type) Open the bankaccount selectorvoidBankUtils.silentlyCreateBankaccount(int id, BankAccountType type) Silently create a bankaccount without communicating it through the messagechannels.Constructors in nl.minetopiasdb.api.banking with parameters of type BankAccountTypeModifierConstructorDescriptionBankaccount(int id, BankAccountType type, double balance, String name, boolean frozen, HashMap<UUID, BankPermission> users) -
Uses of BankAccountType in nl.minetopiasdb.api.enums
Subclasses with type arguments of type BankAccountType in nl.minetopiasdb.api.enumsModifier and TypeClassDescriptionenumEnum that holds the different types of bankaccountsMethods in nl.minetopiasdb.api.enums that return BankAccountTypeModifier and TypeMethodDescriptionstatic BankAccountTypeReturns the enum constant of this class with the specified name.static BankAccountType[]BankAccountType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of BankAccountType in nl.minetopiasdb.api.events.bank
Methods in nl.minetopiasdb.api.events.bank that return BankAccountTypeModifier and TypeMethodDescriptionBankAccountAddUserEvent.getBankAccountType()Get the type of bankaccountBankAccountCreatedEvent.getBankAccountType()Get the type of bankaccountBankAccountDeleteEvent.getBankAccountType()Get the type of bankaccountBankAccountRemoveUserEvent.getBankAccountType()Get the type of bankaccountBankAccountDepositEvent.getType()BankAccountWithdrawEvent.getType()Constructors in nl.minetopiasdb.api.events.bank with parameters of type BankAccountTypeModifierConstructorDescriptionBankAccountCreatedEvent(org.bukkit.command.CommandSender player, int bankId, BankAccountType accountType) BankAccountDepositEvent(org.bukkit.entity.Player player, BankAccountType type, int account, double amount) BankAccountWithdrawEvent(org.bukkit.entity.Player player, BankAccountType type, int account, double amount)