Index

A C E F G H I L M N O P R S T U V 
All Classes and Interfaces|All Packages|Serialized Form

A

ArgSubtype<T,K> - Class in redempt.redlib.commandmanager
An ArgType which is dependent on another type appearing before it and uses it for conversions and tab completion
ArgSubtype(String, ArgType<?>, ArgType.ArgConverter<T, ?>) - Constructor for class redempt.redlib.commandmanager.ArgSubtype
 
ArgType<T> - Class in redempt.redlib.commandmanager
A command argument type, which converts a String argument to another type
ArgType(String, BiFunction<CommandSender, String, T>) - Constructor for class redempt.redlib.commandmanager.ArgType
Create an ArgType from a name and converter
ArgType(String, Function<String, T>) - Constructor for class redempt.redlib.commandmanager.ArgType
Create an ArgType from a name and converter
ArgType(String, ArgType<?>, ArgType.ArgConverter<T, ?>) - Constructor for class redempt.redlib.commandmanager.ArgType
 
ArgType.ArgConverter<T,K> - Interface in redempt.redlib.commandmanager
 
ArgType.TabCompleter<T> - Interface in redempt.redlib.commandmanager
 
ArgType.TabStreamCompleter<T> - Interface in redempt.redlib.commandmanager
 
assertProvider(String, String, Predicate<Player>) - Static method in class redempt.redlib.commandmanager.ContextProvider
Creates a ContextProvider which returns true if the predicate's condition is met, and null otherwise, which will cause the command to fail.
assertProvider(String, Predicate<Player>) - Static method in class redempt.redlib.commandmanager.ContextProvider
Creates a ContextProvider which returns true if the predicate's condition is met, and null otherwise, which will cause the command to fail.

C

checkConstraint(CommandSender, Constraint<T>, T) - Method in class redempt.redlib.commandmanager.ArgType
 
children - Variable in class redempt.redlib.commandmanager.Command
 
color(String) - Static method in class redempt.redlib.misc.FormatUtils
Shorthand for ChatColor.translateAlternateColorCodes(char, String) which also formats hex color codes
color(String, boolean) - Static method in class redempt.redlib.misc.FormatUtils
Shorthand for ChatColor.translateAlternateColorCodes(char, String) with the option to format hex color codes
combine(Object[], Object[]) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
Command - Class in redempt.redlib.commandmanager
Represents a command which can be registered
Command() - Constructor for class redempt.redlib.commandmanager.Command
 
Command(String[], CommandArgument[], CommandFlag[], ContextProvider<?>[], ContextProvider<?>[], String, String, Command.SenderType, String, List<Command>, boolean, boolean, boolean, boolean) - Constructor for class redempt.redlib.commandmanager.Command
 
Command.MethodHook - Class in redempt.redlib.commandmanager
 
Command.SenderType - Enum Class in redempt.redlib.commandmanager
 
CommandArgument - Class in redempt.redlib.commandmanager.processing
 
CommandArgument(ArgType<?>, int, String, Constraint<?>, boolean, boolean, boolean, boolean) - Constructor for class redempt.redlib.commandmanager.processing.CommandArgument
 
CommandCollection - Class in redempt.redlib.commandmanager
Represents a collection of commands which can be mass-registered.
CommandCollection(List<Command>) - Constructor for class redempt.redlib.commandmanager.CommandCollection
 
CommandCollection.MergedBaseCommand - Class in redempt.redlib.commandmanager
 
CommandFlag - Class in redempt.redlib.commandmanager.processing
 
CommandFlag(ArgType<?>, String, Constraint<?>, int, Function<CommandSender, Object>, boolean) - Constructor for class redempt.redlib.commandmanager.processing.CommandFlag
 
CommandHook - Annotation Interface in redempt.redlib.commandmanager
 
CommandHookException - Exception Class in redempt.redlib.commandmanager.exceptions
Thrown when a command with a hook name specified does not find a method hook
CommandHookException(String) - Constructor for exception class redempt.redlib.commandmanager.exceptions.CommandHookException
 
CommandParameter - Interface in redempt.redlib.commandmanager.processing
 
CommandParseException - Exception Class in redempt.redlib.commandmanager.exceptions
Thrown when there is a problem found while parsing a command file
CommandParseException(String) - Constructor for exception class redempt.redlib.commandmanager.exceptions.CommandParseException
 
CommandParser - Class in redempt.redlib.commandmanager
Used to get ContextProviders and CommandArgumentTypes for a command file, then parse it
CommandParser(InputStream) - Constructor for class redempt.redlib.commandmanager.CommandParser
Constructs a CommandParser to parse input from the given stream.
CommandParser(InputStream, Messages) - Constructor for class redempt.redlib.commandmanager.CommandParser
Constructs a CommandParser to parse input from the given stream.
CommandProcessUtils - Class in redempt.redlib.commandmanager.processing
 
CommandProcessUtils() - Constructor for class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
CONSOLE - Enum constant in enum class redempt.redlib.commandmanager.Command.SenderType
 
constraint(Function<String, Constraint<T>>) - Method in class redempt.redlib.commandmanager.ArgType
Set the handler to check constraints for this type
Constraint<T> - Class in redempt.redlib.commandmanager
Represents a condition which can be tested on command arguments, and can dynamically generate error messages
consumes() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
ContextProvider<T> - Class in redempt.redlib.commandmanager
Used to provide context arguments to command method hooks
ContextProvider(String, String, Function<Player, T>) - Constructor for class redempt.redlib.commandmanager.ContextProvider
Constructs a ContextProvider.
ContextProvider(String, Function<Player, T>) - Constructor for class redempt.redlib.commandmanager.ContextProvider
Constructs a ContextProvider.
convert(CommandSender, Object, String) - Method in class redempt.redlib.commandmanager.ArgType
Converts an argument to another type
convert(CommandSender, K, String) - Method in interface redempt.redlib.commandmanager.ArgType.ArgConverter
 
convertArg(Command, CommandParameter, String, Object[], int, CommandSender) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
createHookMap(Object...) - Method in class redempt.redlib.commandmanager.Command
 

E

EVERYONE - Enum constant in enum class redempt.redlib.commandmanager.Command.SenderType
 
execute(CommandSender, String[], List<Object>) - Method in class redempt.redlib.commandmanager.Command
 
execute(CommandSender, String[], List<Object>) - Method in class redempt.redlib.commandmanager.CommandCollection.MergedBaseCommand
 

F

failure(Command, V) - Static method in class redempt.redlib.commandmanager.processing.Result
 
formatLargeInteger(long) - Static method in class redempt.redlib.misc.FormatUtils
Formats a large number with commas, like 12345 as 12,345
formatMoney(double) - Static method in class redempt.redlib.misc.FormatUtils
Formats money like 3.5B representing 3.5 billion
formatTimeOffset(long) - Static method in class redempt.redlib.misc.FormatUtils
Formats a time offset like 1h3m8s (1 hour, 3 minutes, 8 seconds)
formatTimeOffset(long, int) - Static method in class redempt.redlib.misc.FormatUtils
Formats a time offset like 1h3m8s (1 hour, 3 minutes, 8 seconds)
FormatUtils - Class in redempt.redlib.misc
Contains utilities for formatting various information
FormatUtils() - Constructor for class redempt.redlib.misc.FormatUtils
 

G

get(String) - Method in class redempt.redlib.commandmanager.Messages
Gets a formatted message by name
getAliases() - Method in class redempt.redlib.commandmanager.Command
 
getAndReplace(String, String...) - Method in class redempt.redlib.commandmanager.Messages
Gets a formatted message by name, replacing placeholders in it
getArgsDisplay() - Method in class redempt.redlib.commandmanager.Command
 
getBaseArgTypes() - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getByHookName(String) - Method in class redempt.redlib.commandmanager.CommandCollection
Recurseively searches this CommandCollection for a command with a given hook name
getCallingPlugin() - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getCommand() - Method in class redempt.redlib.commandmanager.processing.Result
 
getCommandManagerMessages() - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getCommandMap() - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getCommands() - Method in class redempt.redlib.commandmanager.CommandCollection
 
getConstraint() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getConstraint() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getConstraint() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getConstraint(String) - Method in class redempt.redlib.commandmanager.ArgType
 
getConstraint(String, Function<String, T>) - Static method in class redempt.redlib.commandmanager.processing.NumberConstraint
Create a number constraint from a constraint string formatted like min,max or ,max or min,
getConversionFailMessage(CommandParameter, String) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getDeepest(List<Result<T, U>>) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getDefault(String) - Static method in class redempt.redlib.commandmanager.ArgType
Gets a default ArgType by name
getDefaultPlaceholderPattern() - Static method in class redempt.redlib.commandmanager.Messages
 
getDefaultValue() - Method in class redempt.redlib.commandmanager.Message
 
getDefaultValue() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getDefaultValue(CommandSender) - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getDefaultValue(CommandSender) - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getDepth() - Method in class redempt.redlib.commandmanager.Command
 
getError(CommandSender, Object) - Method in class redempt.redlib.commandmanager.Constraint
 
getErrorMessage() - Method in class redempt.redlib.commandmanager.ContextProvider
 
getExpandedName() - Method in class redempt.redlib.commandmanager.Command
 
getFormattedValue() - Method in class redempt.redlib.commandmanager.Message
 
getFullName() - Method in class redempt.redlib.commandmanager.Command
 
getHelp() - Method in class redempt.redlib.commandmanager.Command
 
getHelpRecursive(CommandSender, int) - Method in class redempt.redlib.commandmanager.Command
 
getHelpRecursive(CommandSender, int) - Method in class redempt.redlib.commandmanager.CommandCollection.MergedBaseCommand
 
getKnownCommands(SimpleCommandMap) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
getListener() - Method in class redempt.redlib.commandmanager.Command.MethodHook
 
getLoaded(Plugin) - Static method in class redempt.redlib.commandmanager.Messages
Gets the Messages which have been loaded for a specific plugin, if they exist
getMessage() - Method in class redempt.redlib.commandmanager.processing.Result
 
getMessage(String) - Method in class redempt.redlib.commandmanager.Messages
Gets the raw Message object by name
getMethod() - Method in class redempt.redlib.commandmanager.Command.MethodHook
 
getName() - Method in class redempt.redlib.commandmanager.ArgType
 
getName() - Method in class redempt.redlib.commandmanager.Command
 
getName() - Method in class redempt.redlib.commandmanager.Constraint
 
getName() - Method in class redempt.redlib.commandmanager.ContextProvider
 
getName() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getName() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getName() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getNameAndConstraint() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getNames() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getParent() - Method in class redempt.redlib.commandmanager.ArgType
 
getPermission() - Method in class redempt.redlib.commandmanager.Command
 
getPlaceholders() - Method in class redempt.redlib.commandmanager.Message
 
getPlugin() - Method in class redempt.redlib.commandmanager.Messages
 
getPosition() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getPosition() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getPosition() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getType() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getType() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getType() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getType(String, ArgType<?>[]) - Static method in class redempt.redlib.commandmanager.Command
 
getTypeName() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
getTypeName() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
getTypeName() - Method in interface redempt.redlib.commandmanager.processing.CommandParameter
 
getValue() - Method in class redempt.redlib.commandmanager.Message
 
getValue() - Method in class redempt.redlib.commandmanager.processing.Result
 

H

help - Variable in class redempt.redlib.commandmanager.Command
 
hook - Variable in class redempt.redlib.commandmanager.Command
 

I

isContextDefault() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
isContextDefault() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
isOptional() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
isPostArg() - Method in class redempt.redlib.commandmanager.Command
 
isVararg() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 

L

lastArgTakesAll() - Method in class redempt.redlib.commandmanager.Command
 
lineWrap(String, int) - Static method in class redempt.redlib.misc.FormatUtils
Splits a line of text across multiple lines, attempting to limit the length of each line
load(InputStream, Path) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file and writes missing defaults
load(InputStream, Path, Pattern) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file and writes missing defaults
load(Plugin) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file, messages.txt, and writes missing defaults loaded from the plugin resource called messages.txt
load(Plugin, InputStream) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file, messages.txt, and writes missing defaults
load(Plugin, InputStream, String) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file and writes missing defaults
load(Plugin, InputStream, String, Pattern) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file and writes missing defaults
load(Plugin, InputStream, Pattern) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file, messages.txt, and writes missing defaults
load(Plugin, Pattern) - Static method in class redempt.redlib.commandmanager.Messages
Loads messages from a file, messages.txt, and writes missing defaults loaded from the plugin resource called messages.txt

M

mainHand - Static variable in class redempt.redlib.commandmanager.ContextProvider
Use "mainhand" in the command file.
map(String, String, BiFunction<Player, T, K>) - Method in class redempt.redlib.commandmanager.ContextProvider
Creates a new ContextProvider based on this one which converts from this type to another
map(String, String, Function<T, K>) - Method in class redempt.redlib.commandmanager.ContextProvider
Creates a new ContextProvider based on this one which converts from this type to another
map(String, BiFunction<CommandSender, T, K>) - Method in class redempt.redlib.commandmanager.ArgType
Creates a new ArgType based on this one which converts from this type to another
map(String, BiFunction<Player, T, K>) - Method in class redempt.redlib.commandmanager.ContextProvider
Creates a new ContextProvider based on this one which converts from this type to another
map(String, Function<T, K>) - Method in class redempt.redlib.commandmanager.ArgType
Creates a new ArgType based on this one which converts from this type to another
map(String, Function<T, K>) - Method in class redempt.redlib.commandmanager.ContextProvider
Creates a new ContextProvider based on this one which converts from this type to another
MergedBaseCommand(List<Command>) - Constructor for class redempt.redlib.commandmanager.CommandCollection.MergedBaseCommand
 
Message - Class in redempt.redlib.commandmanager
Represents a single entry in a Messages manager
Message(String, String, Pattern) - Constructor for class redempt.redlib.commandmanager.Message
 
Messages - Class in redempt.redlib.commandmanager
Represents a list of messages loaded from a file with defaults
MethodHook(Method, Object) - Constructor for class redempt.redlib.commandmanager.Command.MethodHook
 
msg(String) - Static method in class redempt.redlib.commandmanager.Messages
Determines which plugin is calling this method, finds its loaded messages, and returns the message with the given name.
msg(String) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
msgReplace(String, String...) - Static method in class redempt.redlib.commandmanager.Messages
Determines which plugin is calling this method, finds its loaded messages, and returns the message with the given name, replacing placeholders

N

nameMatches(String) - Method in class redempt.redlib.commandmanager.Command
Check if a name matches any of this command's aliases
nameMatches(String) - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
names - Variable in class redempt.redlib.commandmanager.Command
 
NumberConstraint - Class in redempt.redlib.commandmanager.processing
 
NumberConstraint() - Constructor for class redempt.redlib.commandmanager.processing.NumberConstraint
 

O

of(String, Class<T>) - Static method in class redempt.redlib.commandmanager.ArgType
Creates an ArgType for an enum, which will accept all of the enum's values as arguments and offer all enum values as tab completions
of(String, String...) - Static method in class redempt.redlib.commandmanager.ArgType
Creates an ArgType for a set of possible string inputs
of(String, BiPredicate<CommandSender, T>) - Static method in class redempt.redlib.commandmanager.Constraint
Create a Constraint
of(String, Map<String, T>) - Static method in class redempt.redlib.commandmanager.ArgType
Creates an ArgType for a map of a String to another type
of(BiFunction<CommandSender, T, String>, BiPredicate<CommandSender, T>) - Static method in class redempt.redlib.commandmanager.Constraint
Create a Constraint
of(BiPredicate<CommandSender, T>) - Static method in class redempt.redlib.commandmanager.Constraint
Create a Constraint
of(Function<T, String>, BiPredicate<CommandSender, T>) - Static method in class redempt.redlib.commandmanager.Constraint
Create a Constraint
onDisable(PluginDisableEvent) - Method in class redempt.redlib.commandmanager.processing.UnregisterListener
 

P

parent - Variable in class redempt.redlib.commandmanager.Command
 
parse() - Method in class redempt.redlib.commandmanager.CommandParser
Parses the command info from the stream
PLAYER - Enum constant in enum class redempt.redlib.commandmanager.Command.SenderType
 
plugin - Variable in class redempt.redlib.commandmanager.Command
 
pos - Variable in class redempt.redlib.commandmanager.processing.CommandArgument
 
provide(Player) - Method in class redempt.redlib.commandmanager.ContextProvider
 

R

redempt.redlib.commandmanager - package redempt.redlib.commandmanager
 
redempt.redlib.commandmanager.exceptions - package redempt.redlib.commandmanager.exceptions
 
redempt.redlib.commandmanager.processing - package redempt.redlib.commandmanager.processing
 
redempt.redlib.misc - package redempt.redlib.misc
 
register(String, Object...) - Method in class redempt.redlib.commandmanager.Command
Registers this command and its children
register(String, Object...) - Method in class redempt.redlib.commandmanager.CommandCollection.MergedBaseCommand
 
register(String, Object...) - Method in class redempt.redlib.commandmanager.CommandCollection
Register all commands in this CommandCollection
register(Plugin, String, Object...) - Method in class redempt.redlib.commandmanager.CommandCollection
Register all commands in this CommandCollection
registerHook(Map<String, Command.MethodHook>, Plugin) - Method in class redempt.redlib.commandmanager.Command
 
result(Command, T, V) - Static method in class redempt.redlib.commandmanager.processing.Result
 
Result<T,V> - Class in redempt.redlib.commandmanager.processing
 
Result(Command, T, V) - Constructor for class redempt.redlib.commandmanager.processing.Result
 
runHook(CommandSender, String[], List<Object>, List<Result<Boolean, String>>) - Method in class redempt.redlib.commandmanager.Command
 

S

self - Static variable in class redempt.redlib.commandmanager.ContextProvider
Deprecated.
Now included by default, there is no need to add it yourself
setArgTypes(ArgType<?>...) - Method in class redempt.redlib.commandmanager.CommandParser
Sets the CommandArgumentTypes to be used when building this command.
setContextProviders(ContextProvider<?>...) - Method in class redempt.redlib.commandmanager.CommandParser
Sets the ContextProviders to be used when building this command.
setDefaultValue(Function<CommandSender, Object>, boolean) - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
setFormatted(String) - Method in class redempt.redlib.commandmanager.Message
 
setFormatter(UnaryOperator<String>) - Method in class redempt.redlib.commandmanager.Messages
Sets the function which will be used to format message strings before they are returned
setName(String) - Method in class redempt.redlib.commandmanager.Constraint
 
setTab(BiFunction<CommandSender, String[], List<String>>) - Method in class redempt.redlib.commandmanager.ArgType
Sets the tab completer for this type
setTab(Function<CommandSender, List<String>>) - Method in class redempt.redlib.commandmanager.ArgType
Sets the tab completer for this type
setTab(ArgType.TabCompleter<?>) - Method in class redempt.redlib.commandmanager.ArgType
 
showHelp(String, CommandSender) - Method in class redempt.redlib.commandmanager.CommandCollection
Recursively searches this CommandCollection for a command by a given hook, then shows the help to the given sender
showHelp(CommandSender) - Method in class redempt.redlib.commandmanager.Command
Shows the help to a CommandSender
splitArgs(String) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
splitArgsForTab(String[]) - Static method in class redempt.redlib.commandmanager.processing.CommandProcessUtils
 
subType(String, BiFunction<String, T, K>) - Method in class redempt.redlib.commandmanager.ArgType
Creates a new ArgSubtype with this ArgType as its parent.
subType(String, ArgType.ArgConverter<K, T>) - Method in class redempt.redlib.commandmanager.ArgType
Creates a new ArgSubtype with this ArgType as its parent.
success(Command, T) - Static method in class redempt.redlib.commandmanager.processing.Result
 

T

tab(CommandSender, String[]) - Method in class redempt.redlib.commandmanager.Command
 
tab(CommandSender, String[]) - Method in class redempt.redlib.commandmanager.CommandCollection.MergedBaseCommand
 
tab(ArgType.TabCompleter<K>) - Method in class redempt.redlib.commandmanager.ArgSubtype
Sets the tab completer for this type
tabComplete(CommandSender, String[], Object) - Method in class redempt.redlib.commandmanager.ArgType
Gets tab completions
tabComplete(CommandSender, String[], T) - Method in interface redempt.redlib.commandmanager.ArgType.TabCompleter
 
tabComplete(CommandSender, T, String[]) - Method in interface redempt.redlib.commandmanager.ArgType.TabStreamCompleter
 
tabStream(BiFunction<CommandSender, String[], Stream<String>>) - Method in class redempt.redlib.commandmanager.ArgType
Sets the tab completer for this type, can be used instead of tab
tabStream(Function<CommandSender, Stream<String>>) - Method in class redempt.redlib.commandmanager.ArgType
Sets the tab completer for this type, can be used instead of tab
tabStream(ArgType.TabStreamCompleter<K>) - Method in class redempt.redlib.commandmanager.ArgSubtype
Sets the tab completer for this type, can be used instead of tab
takesAll() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
test(CommandSender, Object) - Method in class redempt.redlib.commandmanager.Constraint
 
toCamelCase(String) - Static method in class redempt.redlib.misc.FormatUtils
Converts a string to camelCase, where every character after a space is capitalized.
topLevel - Variable in class redempt.redlib.commandmanager.Command
 
toString() - Method in class redempt.redlib.commandmanager.processing.CommandArgument
 
toString() - Method in class redempt.redlib.commandmanager.processing.CommandFlag
 
toTitleCase(String) - Static method in class redempt.redlib.misc.FormatUtils
Converts a string to Title Case, where the first character and every character after a space is capitalized.
truncateDouble(double) - Static method in class redempt.redlib.misc.FormatUtils
Truncates a double using a DecimalFormat with 0.00 as its format string

U

UnregisterListener - Class in redempt.redlib.commandmanager.processing
 
UnregisterListener(Plugin, Runnable) - Constructor for class redempt.redlib.commandmanager.processing.UnregisterListener
 

V

value() - Element in annotation interface redempt.redlib.commandmanager.CommandHook
 
valueOf(String) - Static method in enum class redempt.redlib.commandmanager.Command.SenderType
Returns the enum constant of this class with the specified name.
values() - Static method in enum class redempt.redlib.commandmanager.Command.SenderType
Returns an array containing the constants of this enum class, in the order they are declared.
A C E F G H I L M N O P R S T U V 
All Classes and Interfaces|All Packages|Serialized Form