Index
All Classes and Interfaces|All Packages
A
- acceptCallback() - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
Accepts the callback, this then lets the event continue.
- addConfigBlacklist(String, List<String>) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
-
Add blacklist paths and sections for the config file.
- addSubCommand(ECommand) - Method in interface com.olziedev.playereconomy.api.eco.command.CommandRegistry
-
Register a sub-command to the registry.
- apis - Static variable in interface com.olziedev.playereconomy.api.eco.EConfig
B
- BALANCE_UPDATE - Enum constant in enum com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent.Type
-
This constant is used when
EPlayer.setBalance(double)
has been called. - BukkitChunk - Class in com.olziedev.playereconomy.api.scheduler.wrapped.chunk
-
Represents a chunk in the world.
- BukkitChunk(Chunk) - Constructor for class com.olziedev.playereconomy.api.scheduler.wrapped.chunk.BukkitChunk
C
- callEvent(T, Consumer<T>, boolean) - Static method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
Calls the event and runs the callback.
- cancel() - Method in class com.olziedev.playereconomy.api.scheduler.wrapped.task.FutureTask
- cancel() - Method in interface com.olziedev.playereconomy.api.scheduler.wrapped.task.PluginTask
-
Cancels the task.
- cancelAllTasks() - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to cancel all the tasks.
- com.olziedev.playereconomy.api - package com.olziedev.playereconomy.api
-
All the generalized objects within the API.
- com.olziedev.playereconomy.api.eco - package com.olziedev.playereconomy.api.eco
-
All economy based objects that handles and manages data.
- com.olziedev.playereconomy.api.eco.command - package com.olziedev.playereconomy.api.eco.command
-
All command based objects that handles and manages sub-commands.
- com.olziedev.playereconomy.api.events - package com.olziedev.playereconomy.api.events
-
All economy event objects that are triggered within the plugin.
- com.olziedev.playereconomy.api.events.player - package com.olziedev.playereconomy.api.events.player
-
All eco events that are triggered for players.
- com.olziedev.playereconomy.api.events.update - package com.olziedev.playereconomy.api.events.update
-
All economy events that are triggered on an update.
- com.olziedev.playereconomy.api.expansion - package com.olziedev.playereconomy.api.expansion
-
All expansion based objects that expose methods for external plugins to hook into.
- com.olziedev.playereconomy.api.scheduler - package com.olziedev.playereconomy.api.scheduler
-
All scheduler based objects that are used in the plugin.
- com.olziedev.playereconomy.api.scheduler.wrapped.chunk - package com.olziedev.playereconomy.api.scheduler.wrapped.chunk
-
All wrapped chunk objects that are used for the scheduler.
- com.olziedev.playereconomy.api.scheduler.wrapped.task - package com.olziedev.playereconomy.api.scheduler.wrapped.task
-
All wrapped task objects that are used for the scheduler.
- CommandRegistry - Interface in com.olziedev.playereconomy.api.eco.command
-
Handles and manages all sub-commands for the plugin.
- config - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the PlayerWarps config instance.
- CONSOLE_ONLY - Enum constant in enum com.olziedev.playereconomy.api.eco.command.ECommand.ExecutorType
-
Only console can execute the command.
- createConfigItem(ConfigurationSection, boolean) - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
-
Use the plugin create item method for all type item creation support.
D
- description - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
The description of the command.
E
- ECommand - Class in com.olziedev.playereconomy.api.eco.command
-
Represents an eco sub-command that can be executed within the plugin.
- ECommand(String) - Constructor for class com.olziedev.playereconomy.api.eco.command.ECommand
-
The constructor of the command, this does not register the command, you will need to use
addSubCommand(ECommand)
to register the command. - ECommand.ExecutorType - Enum in com.olziedev.playereconomy.api.eco.command
-
List of all possible executor types an eco command can have.
- EConfig - Interface in com.olziedev.playereconomy.api.eco
-
Represents the config API for PlayerEconomy.
- EconomyEvent - Class in com.olziedev.playereconomy.api.events
-
Handles all the basic and common methods for events.
- EconomyEvent() - Constructor for class com.olziedev.playereconomy.api.events.EconomyEvent
- EconomyEvent(boolean) - Constructor for class com.olziedev.playereconomy.api.events.EconomyEvent
- EconomyPlayerUpdateEvent - Class in com.olziedev.playereconomy.api.events.update
-
Event that is triggered before a players' data has been changed.
- EconomyPlayerUpdateEvent(EPlayer, EconomyPlayerUpdateEvent.Type) - Constructor for class com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent
-
This event is triggered before a players' data has been changed.
- EconomyPlayerUpdateEvent.Type - Enum in com.olziedev.playereconomy.api.events.update
-
The list of data that can bee changed in the
EconomyPlayerUpdateEvent
event. - EconomyUpdateEvent<T> - Class in com.olziedev.playereconomy.api.events.update
-
Handles all the basic and common methods for updated based events.
- EconomyUpdateEvent(T, T) - Constructor for class com.olziedev.playereconomy.api.events.update.EconomyUpdateEvent
- EconomyUpdateEvent(T, T, boolean) - Constructor for class com.olziedev.playereconomy.api.events.update.EconomyUpdateEvent
- EPlayer - Class in com.olziedev.playereconomy.api.eco
-
Handles and manages all the player data.
- EPlayer() - Constructor for class com.olziedev.playereconomy.api.eco.EPlayer
- execute(CommandSender, String[]) - Method in class com.olziedev.playereconomy.api.eco.command.ECommand
-
This method is called when the command has been executed by its sender.
- executeCommand(Player, String) - Method in interface com.olziedev.playereconomy.api.eco.command.CommandRegistry
-
Execute a config command with the correct syntax.
- executeExpansionAction(Class<T>, Consumer<? super T>) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Execute a consumer action on the specified implementation.
- executorType - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
This determines the allowed executor type for this command, if you wish for there to be no restriction, set it to null (default value).
- expansionConfig - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the PlayerWarps expansion config instance.
- ExpansionRegistry - Class in com.olziedev.playereconomy.api.expansion
-
Handles and manages all expansions for the plugin.
- ExpansionRegistry() - Constructor for class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
F
- file - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the file of the expansion.
- formatNumber(double) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
- formatNumber(double, boolean) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
- formatNumberShort(double) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
- FutureTask - Class in com.olziedev.playereconomy.api.scheduler.wrapped.task
- FutureTask() - Constructor for class com.olziedev.playereconomy.api.scheduler.wrapped.task.FutureTask
G
- getAmount() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyDepositEvent
- getAmount() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyWithdrawEvent
- getBalance() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getBlock(int, int, int) - Method in class com.olziedev.playereconomy.api.scheduler.wrapped.chunk.BukkitChunk
-
Gets the block at the specified coordinates.
- getChunkAsync(Location, Consumer<BukkitChunk>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to get a chunk asynchronously when possible.
- getClazzLoader() - Method in class com.olziedev.playereconomy.api.OlziePluginAPI
- getCommandRegistry() - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
- getCommands() - Method in interface com.olziedev.playereconomy.api.eco.command.CommandRegistry
-
Retrieve a list of all the sub-commands added via
addSubCommand(ECommand)
This doesn't include internal sub-commands provided by the plugin. - getEcoPlayer() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyDepositEvent
- getEcoPlayer() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyWithdrawEvent
- getEcoPlayer(UUID) - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
-
Retrieve the requested eco player.
- getEcoPlayers() - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
- getExpansion(Class<T>) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve an expansion based on the class specified.
- getExpansion(String) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve an expansion based on the name specified.
- getExpansionRegistry() - Method in class com.olziedev.playereconomy.api.OlziePluginAPI
- getExpansions() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve a list of all the expansions.
- getExpansions(Class<T>) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve a list of all the expansions based on the implementation specified.
- getExpansionStream(Class<T>) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve a stream of all the expansions based on the implementation specified.
- getHandlerList() - Static method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyDepositEvent
- getHandlerList() - Static method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyWithdrawEvent
- getHandlerList() - Static method in class com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent
- getHandlers() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyDepositEvent
- getHandlers() - Method in class com.olziedev.playereconomy.api.events.player.PlayerEconomyWithdrawEvent
- getHandlers() - Method in class com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent
- getInstance() - Static method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
- getInstance(Consumer<EConfig>) - Static method in interface com.olziedev.playereconomy.api.eco.EConfig
-
Waits for the instance of the API when it is ready.
- getInstance(Consumer<PlayerEconomyAPI>) - Static method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
-
Waits for the instance of the API when it is ready.
- getLanguage() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getLanguageValue(String) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
- getLanguageValue(UUID, String) - Method in interface com.olziedev.playereconomy.api.eco.EConfig
- getLogs() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getName() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getName() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
- getOfflinePlayer() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getOldValue() - Method in class com.olziedev.playereconomy.api.events.update.EconomyUpdateEvent
- getPlayer() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getPlayerEconomyAPI() - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
- getPlugin() - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
- getPluginScheduler() - Method in class com.olziedev.playereconomy.api.OlziePluginAPI
- getTaskId() - Method in class com.olziedev.playereconomy.api.scheduler.wrapped.task.FutureTask
- getTaskId() - Method in interface com.olziedev.playereconomy.api.scheduler.wrapped.task.PluginTask
- getTopBalance() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getType() - Method in class com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent
- getUpdatedValue() - Method in class com.olziedev.playereconomy.api.events.update.EconomyUpdateEvent
- getUUID() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
- getVaultExpansionChat() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve the integrated permission provider in this registry from Vault.
- getVaultExpansionEconomy() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve the integrated permission provider in this registry from Vault.
- getVaultExpansionPermission() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Retrieve the integrated permission provider in this registry from Vault.
I
- innitPlaceholders(PluginExpansion) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Initialize the placeholders for the pluginExpansion.
- instance - Static variable in interface com.olziedev.playereconomy.api.eco.EConfig
- integrated - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns if the expansion is integrated into the plugin or if it has been manually registered using
ExpansionRegistry.registerExpansion(PluginExpansion)
- isCancelled() - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
- isCancelled() - Method in class com.olziedev.playereconomy.api.scheduler.wrapped.task.FutureTask
- isCancelled() - Method in interface com.olziedev.playereconomy.api.scheduler.wrapped.task.PluginTask
-
Checks if the task is cancelled.
- isEnabled() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
- isWaitingForCallback() - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
L
- LANGUAGE_UPDATE - Enum constant in enum com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent.Type
-
This constant is used when
EPlayer.setLanguage(String)
has been called. - LOGS_UPDATE - Enum constant in enum com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent.Type
-
This constant is used when
EPlayer.setLogs(List)
has been called.
N
- name - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
The name of the sub-command that the player will have to enter after the main command.
- noPlaceholderAPICondition(ConfigurationSection, Function<String, String>, OfflinePlayer) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
O
- OlziePluginAPI - Class in com.olziedev.playereconomy.api
-
The main class for accessing and using the API.
- OlziePluginAPI() - Constructor for class com.olziedev.playereconomy.api.OlziePluginAPI
- onLoad() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This method will be initialised if
PluginExpansion.isEnabled()
returns true on plugin enable. - onPreLoad() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
The method that will be initialised before the entire plugin is loaded.
- onTabComplete(CommandSender, String[]) - Method in class com.olziedev.playereconomy.api.eco.command.ECommand
- onUnload() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This method will be initialised when the addon is unloading.
- override - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
Should this command override any set sub-commands that have already been registered.
P
- permissions - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
The list of permissions for this command, a player will only need one of these and is not required to have all of them.
- PLAYER_ONLY - Enum constant in enum com.olziedev.playereconomy.api.eco.command.ECommand.ExecutorType
-
Only players can execute the command.
- PlayerEconomyAPI - Class in com.olziedev.playereconomy.api
-
The main class for accessing and using the API.
- PlayerEconomyAPI() - Constructor for class com.olziedev.playereconomy.api.PlayerEconomyAPI
- PlayerEconomyDepositEvent - Class in com.olziedev.playereconomy.api.events.player
-
Event that is triggered before a player deposits money.
- PlayerEconomyDepositEvent(EPlayer, double) - Constructor for class com.olziedev.playereconomy.api.events.player.PlayerEconomyDepositEvent
-
This event is triggered before a player deposits money.
- PlayerEconomyWithdrawEvent - Class in com.olziedev.playereconomy.api.events.player
-
Event that is triggered before a player withdraws money.
- PlayerEconomyWithdrawEvent(EPlayer, double) - Constructor for class com.olziedev.playereconomy.api.events.player.PlayerEconomyWithdrawEvent
-
This event is triggered before a player withdraws money.
- plugin - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the PlayerWarps plugin instance.
- PluginExpansion - Class in com.olziedev.playereconomy.api.expansion
-
Represents an expansion for it to be loaded and used in
ExpansionRegistry
. - PluginExpansion() - Constructor for class com.olziedev.playereconomy.api.expansion.PluginExpansion
- PluginScheduler<T,
Z> - Class in com.olziedev.playereconomy.api.scheduler -
This class is used to schedule tasks for the plugin.
- PluginScheduler(JavaPlugin) - Constructor for class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This constructor is used to create a new plugin scheduler.
- PluginTask - Interface in com.olziedev.playereconomy.api.scheduler.wrapped.task
-
Represents a task that can be cancelled.
- postEvent() - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
Runs all the waiting post event callbacks.
- postEvent(Runnable) - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
This method is called when the event is finished without having to rely on waiting a tick.
- PremiumPlugin - Interface in com.olziedev.playereconomy.api
R
- refreshName() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
-
Update the player's name for, called when joined.
- registerCommandPlaceholder(String, Function<Player, String>) - Method in interface com.olziedev.playereconomy.api.eco.command.CommandRegistry
-
Register a config command placeholder.
- registerExpansion(PluginExpansion) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Register an pluginExpansion to the registry.
- registry - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the registry it was loaded in.
- reloadExpansions() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Reload all the expansions from the registry.
- removeSubCommand(String) - Method in interface com.olziedev.playereconomy.api.eco.command.CommandRegistry
-
Removes a sub-command from the registry.
- runSingleTaskAsync(Consumer<PluginTask>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task on a single thread.
- runTask(Runnable) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
Ths method is used to run a task on the main thread.
- runTaskAsync(Consumer<PluginTask>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task asynchronously.
- runTaskAtEntity(Entity, Consumer<PluginTask>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific entity.
- runTaskAtEntityLater(Entity, Consumer<PluginTask>, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific entity after a delay.
- runTaskAtEntityTimer(Entity, Consumer<PluginTask>, long, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific entity after a delay and then repeat it.
- runTaskAtLocation(Chunk, Consumer<PluginTask>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific chunk.
- runTaskAtLocation(Location, Consumer<PluginTask>) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific location.
- runTaskAtLocationLater(Chunk, Consumer<PluginTask>, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific chunk after a delay.
- runTaskAtLocationLater(Location, Consumer<PluginTask>, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific location after a delay.
- runTaskAtLocationTimer(Chunk, Consumer<PluginTask>, long, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific chunk after a delay and then repeat it.
- runTaskAtLocationTimer(Location, Consumer<PluginTask>, long, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task at a specific location after a delay and then repeat it.
- runTaskLater(Consumer<PluginTask>, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task on the main thread after a delay.
- runTaskLaterAsync(Consumer<PluginTask>, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task asynchronously after a delay.
- runTaskTimer(Consumer<PluginTask>, long, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task on the main thread after a delay and then repeat it.
- runTaskTimerAsync(Consumer<PluginTask>, long, long) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to run a task asynchronously after a delay and then repeat it.
S
- schedule(Runnable, Date) - Static method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to schedule a runnable to run after a delay.
- sendMessage(CommandSender, String) - Method in class com.olziedev.playereconomy.api.PlayerEconomyAPI
-
Use the plugin send message method for all type of syntax support.
- setBalance(double) - Method in class com.olziedev.playereconomy.api.eco.EPlayer
-
Modifies the balance of the player.
- setCancelled(boolean) - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
- setEventCallback(Runnable) - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
Deprecated.Internal use only, do not use under any circumstances!
- setExecutors() - Static method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to setup the executors.
- setLanguage(String) - Method in class com.olziedev.playereconomy.api.eco.EPlayer
-
Modifies the language the player will receive messages in.
- setLogs(List<String>) - Method in class com.olziedev.playereconomy.api.eco.EPlayer
-
Modifies the logged actions for this player.
- setTask(Future<?>) - Method in class com.olziedev.playereconomy.api.scheduler.wrapped.task.FutureTask
-
Modifies the task to be cancelled.
- shutdownExpansions() - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Unregisters all the loaded expansions from the registry.
- syntax - Variable in class com.olziedev.playereconomy.api.eco.command.ECommand
-
The syntax of the command.
T
- teleportAsync(Player, Location, Consumer<Boolean>, PlayerTeleportEvent.TeleportCause) - Method in class com.olziedev.playereconomy.api.scheduler.PluginScheduler
-
This method is used to teleport a player to a location asynchronously when possible.
U
- unload() - Method in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This method to unload the expansion from the registry.
- unregisterExpansion(String) - Method in class com.olziedev.playereconomy.api.expansion.ExpansionRegistry
-
Unregister an expansion from the registry.
- updateTopBalance() - Method in class com.olziedev.playereconomy.api.eco.EPlayer
-
Updates the last balance top calculation.
V
- valueOf(String) - Static method in enum com.olziedev.playereconomy.api.eco.command.ECommand.ExecutorType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent.Type
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum com.olziedev.playereconomy.api.eco.command.ECommand.ExecutorType
-
Returns an array containing the constants of this enum type, in the order they are declared.
- values() - Static method in enum com.olziedev.playereconomy.api.events.update.EconomyPlayerUpdateEvent.Type
-
Returns an array containing the constants of this enum type, in the order they are declared.
- version - Variable in class com.olziedev.playereconomy.api.expansion.PluginExpansion
-
This variable is initialised when the expansion has been loaded and returns the version of the expansion.
W
- waitForCallback(boolean) - Method in class com.olziedev.playereconomy.api.events.EconomyEvent
-
This method allows you to wait for the plugins event to continue after you call
EconomyEvent.acceptCallback()
.
All Classes and Interfaces|All Packages