Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Y 

A

accept(T) - Method in interface com.codelanx.commons.data.SQLConsumer
Performs this operation on the given argument.
accessedFrom(String) - Static method in class com.codelanx.commons.util.Reflections
Returns whether or not the current context was called from a class (instance or otherwise) that is passed to this method.
accessedFrom(Class<?>) - Static method in class com.codelanx.commons.util.Reflections
Returns whether or not the current context was called from a class (instance or otherwise) that is passed to this method.
add(E) - Method in class com.codelanx.commons.util.cache.PackingQueue
 
add(E) - Method in class com.codelanx.commons.util.EnumBitSet
Adds a constant to this set.
add(E) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
add(int, E) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
addAll(Collection<? extends E>) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
addAll(int, Collection<? extends E>) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
addExpirationHandler(BiConsumer<K, V>) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Adds a BiConsumer which will be applied to any entries upon expiry
addFirst(E) - Method in class com.codelanx.commons.util.cache.PackingQueue
 
addHandler(Handler) - Static method in class com.codelanx.commons.logging.Logging
 
addLast(E) - Method in class com.codelanx.commons.util.cache.PackingQueue
 
allMatch(DoublePredicate) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
allMatch(IntPredicate) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
allMatch(LongPredicate) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
allMatch(Predicate<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
allNotNull(String, Object...) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalArgumentException if any of the passed arguments are null
allNotNull(Object...) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalArgumentException if any of the passed arguments are null
andThen(Consumer<? super T>) - Method in interface com.codelanx.commons.data.SQLConsumer
Returns a composed Consumer that performs, in sequence, this operation followed by the after operation.
andThen(Function<? super R, ? extends V>) - Method in interface com.codelanx.commons.data.SQLFunction
Returns a composed function that first applies this function to its input, and then applies the after function to the result.
anonMutator(String, Object, T) - Static method in interface com.codelanx.commons.config.ConfigFile
 
anyMatch(DoublePredicate) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
anyMatch(IntPredicate) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
anyMatch(LongPredicate) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
anyMatch(Predicate<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
apply(T) - Method in interface com.codelanx.commons.data.SQLFunction
Applies this function to the given argument.
as(Class<T>) - Method in interface com.codelanx.commons.config.ConfigFile
Attempts to return the ConfigFile value as a casted type.
as(Class<? extends Collection>, Class<G>) - Method in interface com.codelanx.commons.config.ConfigFile
Attempts to return the ConfigFile value as a casted type.
as(Class<? extends Map>, Class<K>, Class<V>) - Method in interface com.codelanx.commons.config.ConfigFile
Attempts to return the ConfigFile value as a casted type.
asDoubleStream() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
asDoubleStream() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
asLongStream() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
attachInfo() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
 
average() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
average() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
average() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 

B

batchUpdate(String, int, Collection<T>, Function<T, ?>...) - Method in interface com.codelanx.commons.data.SQLDataType
Executes a batch update on a database, and maps passed parameters based upon 0-indexed paramMappers for each parameter.
Box<T> - Class in com.codelanx.commons.util.ref
Used for enclosing a single return value, such as a returned task from a scheduler.
Box() - Constructor for class com.codelanx.commons.util.ref.Box
 
boxed() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
boxed() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
boxed() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
build() - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Builds and returns an expiring map.
builder() - Static method in class com.codelanx.commons.util.cache.ExpiringMap
Returns a new ExpiringMap.Builder for this ExpiringMap

C

Cache<E> - Class in com.codelanx.commons.util.cache
Represents a single variable which will be dynamically updated upon regular intervals of retrieval
Cache(long) - Constructor for class com.codelanx.commons.util.cache.Cache
Notes the timed intervals in milliseconds for cache refreshing, and refreshes the cache for the first time
Cache(long, boolean) - Constructor for class com.codelanx.commons.util.cache.Cache
Notes the timed intervals in milliseconds for cache refreshing, and refreshes the cache for the first time
cancelAllTasks() - Static method in class com.codelanx.commons.util.Scheduler
Cancels all running tasks/threads and clears the cached queue.
checkColumn(String, String) - Method in interface com.codelanx.commons.data.SQLDataType
Checks if a table has the following column
checkColumn(String, String) - Method in class com.codelanx.commons.data.types.MySQL
Checks if a table has the following column
checkColumn(String, String) - Method in class com.codelanx.commons.data.types.SQLite
Checks if a table has the following column
checkConnection() - Method in class com.codelanx.commons.data.types.MySQL
Checks to make sure the connection is active to the MySQL server
checkTable(String) - Method in interface com.codelanx.commons.data.SQLDataType
Checks if a table exists within the set database
checkTable(String) - Method in class com.codelanx.commons.data.types.MySQL
Checks if a table exists within the set database
checkTable(String) - Method in class com.codelanx.commons.data.types.SQLite
Checks if a table exists within the set database
clear() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
clear() - Method in class com.codelanx.commons.util.EnumBitSet
Clears the current set of all constants
clear() - Method in class com.codelanx.commons.util.ref.FlexReference
Clears this reference, or unsets any strong references
close() - Method in interface com.codelanx.commons.data.SQLDataType
close() - Method in class com.codelanx.commons.data.types.MySQL
close() - Method in class com.codelanx.commons.data.types.SQLite
Closes the SQLite connection.
close(Statement) - Static method in class com.codelanx.commons.util.Databases
Closes a passed Statement object and swallows any SQLException that occurs.
close(Connection) - Static method in class com.codelanx.commons.util.Databases
Closes a passed Connection object and swallows any SQLException that occurs.
close(ResultSet) - Static method in class com.codelanx.commons.util.Databases
Closes a passed ResultSet object and swallows any SQLException that occurs.
close() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
close() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
close() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
close() - Method in class com.codelanx.commons.util.stream.DebugStream
 
collect(Supplier<R>, ObjDoubleConsumer<R>, BiConsumer<R, R>) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
collect(Supplier<R>, ObjIntConsumer<R>, BiConsumer<R, R>) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
collect(Supplier<R>, ObjLongConsumer<R>, BiConsumer<R, R>) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
collect(Supplier<R>, BiConsumer<R, ? super T>, BiConsumer<R, R>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
collect(Collector<? super T, A, R>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
com.codelanx.commons.config - package com.codelanx.commons.config
 
com.codelanx.commons.data - package com.codelanx.commons.data
 
com.codelanx.commons.data.types - package com.codelanx.commons.data.types
 
com.codelanx.commons.logging - package com.codelanx.commons.logging
 
com.codelanx.commons.util - package com.codelanx.commons.util
 
com.codelanx.commons.util.cache - package com.codelanx.commons.util.cache
 
com.codelanx.commons.util.exception - package com.codelanx.commons.util.exception
 
com.codelanx.commons.util.ref - package com.codelanx.commons.util.ref
 
com.codelanx.commons.util.stream - package com.codelanx.commons.util.stream
 
com.codelanx.commons.util.time - package com.codelanx.commons.util.time
 
commit() - Method in interface com.codelanx.commons.data.SQLDataType
Pushes any queued transactions to the database
compareTo(TimePoint) - Method in class com.codelanx.commons.util.time.TimePoint
compose(Function<? super V, ? extends T>) - Method in interface com.codelanx.commons.data.SQLFunction
Returns a composed function that first applies the before function to its input, and then applies this function to the result.
con - Variable in class com.codelanx.commons.data.types.SQLite
The Connection object
config(String) - Static method in class com.codelanx.commons.logging.Logging
 
config(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
ConfigFile - Interface in com.codelanx.commons.config
Represents a single value that is dynamically retrieved from a FileDataType.
ConnectionPrefs(String, String, String, String, String) - Constructor for class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Class constructor.
ConnectionPrefs(ConfigFile, ConfigFile, ConfigFile, ConfigFile, ConfigFile) - Constructor for class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Class constructor.
connections - Static variable in class com.codelanx.commons.data.types.SQLite
The number of connections in use by this data type
containsKey(Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
containsValue(Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
count() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
count() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
count() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
count() - Method in class com.codelanx.commons.util.stream.DebugStream
 
create() - Static method in class com.codelanx.commons.util.cache.ExpiringMap
Creates a new instance of ExpiringMap with ExpirationPolicy.CREATED and expiration duration of 60 TimeUnit.SECONDS.
createLang(String) - Static method in interface com.codelanx.commons.config.LangFile
Returns a raw Lang object that can be used for dynamic creation of Lang variables

D

Databases - Class in com.codelanx.commons.util
Provides façade methods for making SQL interactions less verbose
Databases() - Constructor for class com.codelanx.commons.util.Databases
 
DataHolder<D extends FileDataType> - Class in com.codelanx.commons.config
Holds a reference to a FileDataType and initializes it upon the first calling.
DataHolder(Class<D>) - Constructor for class com.codelanx.commons.config.DataHolder
Initializes this holder
DataType - Interface in com.codelanx.commons.data
Overall interface representing objects that handle and manage data in relevance to files or databases
DEBUG_SERIALIZATION - Static variable in class com.codelanx.commons.data.FileDataType
 
DebugDoubleStream - Class in com.codelanx.commons.util.stream
A debuggable and extendable DoubleStream wrapper, which allows overriding of only two methods to allow seeing stream operation in realtime.
DebugDoubleStream(DoubleStream, boolean) - Constructor for class com.codelanx.commons.util.stream.DebugDoubleStream
 
DebuggableStreaming<T> - Interface in com.codelanx.commons.util.stream
 
Debugger - Class in com.codelanx.commons.logging
Provides toggleable logging supporting for debug statements and error reporting to a webservice for easy bugfixing.
Debugger.DebugOpts - Class in com.codelanx.commons.logging
Represents internally stored debugging options for specific plugins
Debugger.DebugUtil - Class in com.codelanx.commons.logging
 
DebugIntStream - Class in com.codelanx.commons.util.stream
A debuggable and extendable IntStream wrapper, which allows overriding of only two methods to allow seeing stream operation in realtime.
DebugIntStream(IntStream, boolean) - Constructor for class com.codelanx.commons.util.stream.DebugIntStream
 
DebugLongStream - Class in com.codelanx.commons.util.stream
A debuggable and extendable LongStream wrapper, which allows overriding of only two methods to allow seeing stream operation in realtime.
DebugLongStream(LongStream, boolean) - Constructor for class com.codelanx.commons.util.stream.DebugLongStream
 
DebugOpts() - Constructor for class com.codelanx.commons.logging.Debugger.DebugOpts
Constructor.
DebugStream<T> - Class in com.codelanx.commons.util.stream
A debuggable and extendable Stream wrapper, which allows overriding of only two methods to allow seeing stream operation in realtime.
DebugStream(Stream<T>, boolean) - Constructor for class com.codelanx.commons.util.stream.DebugStream
 
DebugUtil() - Constructor for class com.codelanx.commons.logging.Debugger.DebugUtil
 
defaultPrimitiveValue(Class<T>) - Static method in class com.codelanx.commons.util.Reflections
Returns a "default value" of -1 or false for a default type's class or autoboxing class.
deserializeArray(Object) - Method in class com.codelanx.commons.data.FileDataType
 
deserializeArray(Object) - Method in class com.codelanx.commons.data.types.Json
 
deserializeArray(Object) - Method in class com.codelanx.commons.data.types.XML
 
deserializeArray(Object) - Method in class com.codelanx.commons.data.types.Yaml
 
deserializeMap(Map<String, Object>) - Method in class com.codelanx.commons.data.FileDataType
 
difference(Map<K, V>, Map<K, V>) - Static method in class com.codelanx.commons.util.Reflections
 
distinct() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
distinct() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
distinct() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
distinct() - Method in class com.codelanx.commons.util.stream.DebugStream
 
doHideErrors() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Returns true if errors should not be printed to the debug Logger
doOutput() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Returns true if output is printed to the debug Logger

E

enqueue() - Method in class com.codelanx.commons.util.ref.FlexReference
Attempts to insert the reference into the ReferenceQueue
entering(String, String) - Static method in class com.codelanx.commons.logging.Logging
 
entering(String, String, Object) - Static method in class com.codelanx.commons.logging.Logging
 
entering(String, String, Object[]) - Static method in class com.codelanx.commons.logging.Logging
 
entryLoader(Function<? super K1, ? super V1>) - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Sets the Function that is called when an entry is expired and should be re-initialized
entrySet() - Method in class com.codelanx.commons.util.cache.ExpiringMap
Note this operation manually maps internal expiring entries upon each usage of this method.
EnumBitSet<E extends Enum> - Class in com.codelanx.commons.util
A small set comprised of enum elements, up to 64 constants.
EnumBitSet() - Constructor for class com.codelanx.commons.util.EnumBitSet
Constructs an empty EnumBitSet
EnumBitSet(int) - Constructor for class com.codelanx.commons.util.EnumBitSet
Constructs a new EnumBitSet with the passed constant level
equals(Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
error(Throwable, String, Object...) - Static method in class com.codelanx.commons.logging.Debugger
Prints to the Debugging Logger at Level.SEVERE if Debugger.toggleOutput(boolean) is set to true.
error(Throwable, String, Object...) - Method in class com.codelanx.commons.logging.Logging.LoggingFacade
Logs an exception to the held Logger at Level.SEVERE
Exceptions - Class in com.codelanx.commons.util.exception
A utility class for throwing conditional exceptions, similar to Apache's Validate class.
exiting(String, String) - Static method in class com.codelanx.commons.logging.Logging
 
exiting(String, String, Object) - Static method in class com.codelanx.commons.logging.Logging
 
expiration(long, TimeUnit) - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Sets the default map entry expiration.
expirationPolicy(ExpiringMap.ExpirationPolicy) - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Sets the map entry expiration policy.
ExpiringMap<K,V> - Class in com.codelanx.commons.util.cache
A thread-safe map that expires entries.
ExpiringMap.Builder<K,V> - Class in com.codelanx.commons.util.cache
Builder object for an ExpiringMap.
ExpiringMap.ExpirationPolicy - Enum in com.codelanx.commons.util.cache
Map entry expiration policy.

F

FileDataType - Class in com.codelanx.commons.data
Opens and loads a file into memory using the appropriate data type.
FileDataType(File) - Constructor for class com.codelanx.commons.data.FileDataType
 
fileLock - Variable in class com.codelanx.commons.data.FileDataType
 
FileSerializable - Interface in com.codelanx.commons.data
Created by Rogue on 1/16/16.
filter(DoublePredicate) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
filter(IntPredicate) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
filter(LongPredicate) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
filter(Predicate<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
findAny() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
findAny() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
findAny() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
findAny() - Method in class com.codelanx.commons.util.stream.DebugStream
 
findClosestAndWipe(TreeSet<? extends TimePoint>, TimePoint) - Static method in class com.codelanx.commons.util.time.TimePoint
This is a helper method to find the closest TimePoint in a collection that is still of a greater value than the passed TimePoint.
findFirst() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
findFirst() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
findFirst() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
findFirst() - Method in class com.codelanx.commons.util.stream.DebugStream
 
findPluginJarfile(String) - Static method in class com.codelanx.commons.util.Reflections
Checks whether or not there is a plugin on the server with the name of the passed name paramater.
fine(String) - Static method in class com.codelanx.commons.logging.Logging
 
fine(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
finer(String) - Static method in class com.codelanx.commons.logging.Logging
 
finer(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
finest(String) - Static method in class com.codelanx.commons.logging.Logging
 
finest(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
flatMap(DoubleFunction<? extends DoubleStream>) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
flatMap(IntFunction<? extends IntStream>) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
flatMap(LongFunction<? extends LongStream>) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
flatMap(Function<? super T, ? extends Stream<? extends R>>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
flatMapFromObject(DebuggableStreaming<D>, Function<? super D, ? extends DoubleStream>) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
flatMapFromObject(DebuggableStreaming<D>, Function<? super D, ? extends IntStream>) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
 
flatMapFromObject(DebuggableStreaming<D>, Function<? super D, ? extends LongStream>) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
 
flatMapToDouble(Function<? super T, ? extends DoubleStream>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
flatMapToInt(Function<? super T, ? extends IntStream>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
flatMapToLong(Function<? super T, ? extends LongStream>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
FlexReference<T> - Class in com.codelanx.commons.util.ref
Holds a reference to an object, using either a strong reference, or any of the provided references in Java's provided references.
FlexReference(T, ReferenceType) - Constructor for class com.codelanx.commons.util.ref.FlexReference
Holds the passed in object and creates a reference if necessary
FlexReference(T, ReferenceType, ReferenceQueue<? extends T>) - Constructor for class com.codelanx.commons.util.ref.FlexReference
Holds the passed in object and creates a reference if necessary
flush() - Method in class com.codelanx.commons.util.cache.PackingQueue
Flushes the contents of this PackingQueue and calls upon the Consumer passed in upon the construction of this queue.
forceRefresh() - Method in class com.codelanx.commons.util.cache.Cache
Forcibly refreshes the current value of this Cache
forceRefresh() - Method in class com.codelanx.commons.util.cache.WeakCache
Forcibly refreshes the current value of this WeakCache
forEach(DoubleConsumer) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
forEach(IntConsumer) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
forEach(LongConsumer) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
forEach(Consumer<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
forEachOrdered(DoubleConsumer) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
forEachOrdered(IntConsumer) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
forEachOrdered(LongConsumer) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
forEachOrdered(Consumer<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
format(Object...) - Method in interface com.codelanx.commons.config.LangFile
Formats a LangFile enum constant with the supplied arguments
format(String) - Static method in class com.codelanx.commons.data.types.Json
 
format(TimeUnit) - Method in class com.codelanx.commons.util.time.TimePoint
Formats the current TimePoint to be human-readable, specifying either one or two units of measure depending on what is available
format() - Method in class com.codelanx.commons.util.time.TimePoint
Returns a formatted string with a minimum unit of TimeUnit.NANOSECONDS
formatTime(long) - Static method in class com.codelanx.commons.util.time.TimeUtil
Formats time in a readable output.
formatTime(long, TimeUnit) - Static method in class com.codelanx.commons.util.time.TimeUtil
Formats time in a readable output.
formatTime(TimePoint) - Static method in class com.codelanx.commons.util.time.TimeUtil
Formats time in a readable output.
formatTime(TimePoint, TimeUnit) - Static method in class com.codelanx.commons.util.time.TimeUtil
Formats time in a readable output.
fromString(String) - Static method in class com.codelanx.commons.data.FileDataType
Returns a Class value representative of a FileDataType, or null if none is matched

G

get(InfoFile) - Method in class com.codelanx.commons.config.DataHolder
Returns (and potentially initializes) the underlying FileDataType
get() - Method in interface com.codelanx.commons.config.InfoFile
Gets the current object in memory
get() - Method in interface com.codelanx.commons.config.LangFile
Returns the string value used for this LangFile.
get() - Method in interface com.codelanx.commons.config.MemoryConfig
 
get(String) - Method in class com.codelanx.commons.data.FileDataType
Gets the object at the specified path
get(String, Object) - Method in class com.codelanx.commons.data.FileDataType
Gets the object at the specified path, or returns the passed "default" value if nothing is found
get() - Method in class com.codelanx.commons.util.cache.Cache
Calls a check to see if the cache needs to be updated, and returns the stored variable
get(Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
get() - Method in class com.codelanx.commons.util.cache.WeakCache
Calls a check to see if the cache needs to be updated, and returns the stored variable
get() - Method in class com.codelanx.commons.util.ref.FlexReference
Retrieves the current value of the reference
get(Collection<T>) - Static method in class com.codelanx.commons.util.RNG
Returns a random element from a collection
get(Collection<T>, int) - Static method in class com.codelanx.commons.util.RNG
Returns a list of random, unique elements from a collection
getAmount(TimeUnit) - Method in class com.codelanx.commons.util.time.TimePoint
Returns the relevant measure for the specified unit of time
getArrayClass(Class<?>) - Static method in class com.codelanx.commons.util.Reflections
 
getCaller(int) - Static method in class com.codelanx.commons.util.Reflections
Returns a StackTraceElement of the direct caller of the current method's context.
getCaller() - Static method in class com.codelanx.commons.util.Reflections
Returns a StackTraceElement of the direct caller of the current method's context.
getConfig() - Method in interface com.codelanx.commons.config.InfoFile
Returns the relevant FileDataType for this file.
getConnection() - Method in interface com.codelanx.commons.data.SQLDataType
Returns the Connection object for ease of use in exposing more internal API
getConnection() - Method in class com.codelanx.commons.data.types.MySQL
Returns the Connection object for ease of use in exposing more internal API
getConnection() - Method in class com.codelanx.commons.data.types.SQLite
Returns the Connection object for ease of use in exposing more internal API
getCurrentValue() - Method in class com.codelanx.commons.util.cache.Cache
Returns the currently in-use variable without checking the cache
getCurrentValue() - Method in class com.codelanx.commons.util.cache.WeakCache
Returns the currently in-use variable without checking the cache
getData() - Method in interface com.codelanx.commons.config.InfoFile
Returns the relevant DataHolder for this file, which provides thread-safety for the FileDataType object initialization
getData() - Method in interface com.codelanx.commons.config.MemoryConfig
 
getData() - Method in interface com.codelanx.commons.data.FileSerializable
 
getDatabase() - Method in class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Returns the database to use in the MySQL cluster
getDefault() - Method in interface com.codelanx.commons.config.InfoFile
Returns the default value of the key
getDefault() - Method in interface com.codelanx.commons.config.LangFile
The default value of this LangFile string
getDefault() - Method in interface com.codelanx.commons.config.MemoryConfig
 
getException() - Method in class com.codelanx.commons.data.SQLResponse
 
getExpiration() - Method in class com.codelanx.commons.util.cache.ExpiringMap
Returns the map's default expiration duration in milliseconds.
getExpiration(K) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Gets the expiration duration in milliseconds for the entry corresponding to the given key.
getFileLocation() - Method in interface com.codelanx.commons.config.InfoFile
 
getFilter() - Static method in class com.codelanx.commons.logging.Logging
 
getFirst() - Method in class com.codelanx.commons.util.ref.Tuple
Retrieves the first parameter
getFromWeightedMap(Map<T, Double>) - Static method in class com.codelanx.commons.util.RNG
Returns a random variable from a weighted map, which is a map of objects to their respective probabilities.
getHandlers() - Static method in class com.codelanx.commons.logging.Logging
 
getHost() - Method in class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Returns the host in use by these MySQL.ConnectionPrefs
getKey() - Method in interface com.codelanx.commons.data.FileSerializable
 
getLevel() - Static method in class com.codelanx.commons.logging.Logging
 
getLevel() - Method in class com.codelanx.commons.util.EnumBitSet
Returns the underlying level representing this set, for use in storage
getLogger() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
 
getLogger() - Static method in class com.codelanx.commons.logging.Logging
Returns the current Logger in use by the plugin calling this method
getMutable(String) - Method in class com.codelanx.commons.data.FileDataType
 
getMutable(String, Object) - Method in class com.codelanx.commons.data.FileDataType
 
getName() - Static method in class com.codelanx.commons.logging.Logging
 
getNext() - Method in class com.codelanx.commons.util.time.TimePoint
Returns the next TimePoint for this measure of time.
getNextNonZero() - Method in class com.codelanx.commons.util.time.TimePoint
Returns the next non-zero TimePoint that can be found, or null if there are no proceeding points of measure that are non-null and non-zero
getOpts() - Static method in class com.codelanx.commons.logging.Debugger.DebugUtil
 
getParent() - Static method in class com.codelanx.commons.logging.Logging
 
getPass() - Method in class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Returns the password to use when connecting with the user.
getPath() - Method in interface com.codelanx.commons.config.InfoFile
The FileDataType path to store this value in
getPath() - Method in interface com.codelanx.commons.config.MemoryConfig
 
getPoint(TimeUnit) - Method in class com.codelanx.commons.util.time.TimePoint
Returns the specific TimePoint for the passed TimeUnit
getPort() - Method in class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Returns the port to use for the MySQL connection.
getPrefix() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Returns the logging prefix used for debug output.
getProperUnitName(TimeUnit, long) - Static method in class com.codelanx.commons.util.time.TimeUtil
Returns the appropriate spelling for a TimeUnit value based on the value of the "amount" parameter.
getRawStream() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
getRawStream() - Method in interface com.codelanx.commons.util.stream.DebuggableStreaming
 
getRawStream() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
getRawStream() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
getRawStream() - Method in class com.codelanx.commons.util.stream.DebugStream
 
getResourceBundle() - Static method in class com.codelanx.commons.logging.Logging
 
getResourceBundleName() - Static method in class com.codelanx.commons.logging.Logging
 
getResponse() - Method in class com.codelanx.commons.data.SQLResponse
 
getRoot() - Method in class com.codelanx.commons.data.FileDataType
Deprecated.
Public as convenience, may not be exposed when more proper api comes around (key iteration)
getRoot() - Method in class com.codelanx.commons.data.types.XML
 
getSecond() - Method in class com.codelanx.commons.util.ref.Tuple
Retrieves the second parameter
getService() - Static method in class com.codelanx.commons.util.Scheduler
Returns the underlying ScheduledExecutorService used for this utility class
getTime() - Method in class com.codelanx.commons.util.time.TimePoint
Returns the magnitude (or measure) of the current unit for this point
getTime(long) - Static method in class com.codelanx.commons.util.time.TimeUtil
Returns a formatted string of how long ago the passed time was
getTimePoint(long) - Static method in class com.codelanx.commons.util.time.TimePoint
Absolutely disgusting method of retrieving the largest non-zero times difference in a nanosecond period.
getUnit() - Method in class com.codelanx.commons.util.time.TimePoint
Returns the relevant TimeUnit for the measure in this point
getUpdatedRows() - Method in class com.codelanx.commons.data.SQLResponse
 
getUrl() - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Returns the URL that errors are reported to
getUseParentHandlers() - Static method in class com.codelanx.commons.logging.Logging
 
getUser() - Method in class com.codelanx.commons.data.types.MySQL.ConnectionPrefs
Returns the username to use when connecting
getValue() - Method in interface com.codelanx.commons.config.MemoryConfig
 
getValue() - Method in class com.codelanx.commons.util.ref.StrongReference
Retrieves the stored value

H

has(E) - Method in class com.codelanx.commons.util.EnumBitSet
Returns true if this set contains the constant
hasAnnotation(AnnotatedElement, Class<? extends Annotation>) - Static method in class com.codelanx.commons.util.Reflections
Returns true if the specified target has the passed Annotation
hashCode() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
here() - Method in class com.codelanx.commons.logging.Logging.LoggingFacade
Sets a prefix in the Logging.LoggingFacade for the current context from which the Logger is called
hideErrors - Variable in class com.codelanx.commons.logging.Debugger.DebugOpts
 
hideErrors(boolean) - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Toggles whether or not to print errors to the debugger
hideErrors(boolean) - Static method in class com.codelanx.commons.logging.Debugger
Sets whether or not calls to Debugger.error(Throwable, String, Object...) will print errors.

I

IDENTIFIER_KEY - Static variable in interface com.codelanx.commons.data.FileSerializable
 
identity() - Static method in interface com.codelanx.commons.data.SQLFunction
Returns a function that always returns its input argument.
illegalInvocation(boolean, String) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalInvocationException if the value of the state parameter is false
illegalInvocation(boolean) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalInvocationException if the value of the state parameter is false
IllegalInvocationException - Exception in com.codelanx.commons.util.exception
Represents an exception for when a method is called from a code location which is disallowed or invalid
IllegalInvocationException(String) - Constructor for exception com.codelanx.commons.util.exception.IllegalInvocationException
IllegalInvocationException() - Constructor for exception com.codelanx.commons.util.exception.IllegalInvocationException
IllegalInvocationException(String, Throwable) - Constructor for exception com.codelanx.commons.util.exception.IllegalInvocationException
IllegalInvocationException(Throwable) - Constructor for exception com.codelanx.commons.util.exception.IllegalInvocationException
IllegalReturnException - Exception in com.codelanx.commons.util.exception
Thrown when the return type is not acceptable and the program logic cannot continue
IllegalReturnException(String) - Constructor for exception com.codelanx.commons.util.exception.IllegalReturnException
IllegalReturnException() - Constructor for exception com.codelanx.commons.util.exception.IllegalReturnException
IllegalReturnException(String, Throwable) - Constructor for exception com.codelanx.commons.util.exception.IllegalReturnException
IllegalReturnException(Throwable) - Constructor for exception com.codelanx.commons.util.exception.IllegalReturnException
illegalState(boolean, String) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalStateException if the value of the state parameter is false
illegalState(boolean) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an IllegalStateException if the value of the state parameter is false
ImplicitSortedList<E> - Class in com.codelanx.commons.util
Implicitly sorted collection, which will remain sorted upon insertion.
ImplicitSortedList() - Constructor for class com.codelanx.commons.util.ImplicitSortedList
 
ImplicitSortedList(int) - Constructor for class com.codelanx.commons.util.ImplicitSortedList
 
ImplicitSortedList(Comparator<? super E>) - Constructor for class com.codelanx.commons.util.ImplicitSortedList
 
ImplicitSortedList(Collection<? extends E>) - Constructor for class com.codelanx.commons.util.ImplicitSortedList
 
ImplicitSortedList(Collection<? extends E>, Comparator<? super E>) - Constructor for class com.codelanx.commons.util.ImplicitSortedList
 
info(String) - Static method in class com.codelanx.commons.logging.Logging
 
info(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
InfoFile - Interface in com.codelanx.commons.config
Represents a file containing mappings that is owned by a plugin, and can be automatically initialized
init(Class<T>) - Method in interface com.codelanx.commons.config.InfoFile
Loads the InfoFile values from the configuration file.
init(Class<T>) - Method in interface com.codelanx.commons.config.MemoryConfig
 
isAutoCommit() - Method in interface com.codelanx.commons.data.SQLDataType
Returns whether or not this connection automatically commits changes to the database.
isEmpty() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
isEnqueued() - Method in class com.codelanx.commons.util.ref.FlexReference
Returns whether or not the object is enqueued.
isLoggable(Level) - Static method in class com.codelanx.commons.logging.Logging
 
isNull(Object) - Static method in class com.codelanx.commons.util.Lambdas
Returns true if the passed object is null
isOutputtingResults() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
isOutputtingResults() - Method in interface com.codelanx.commons.util.stream.DebuggableStreaming
 
isOutputtingResults() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
isOutputtingResults() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
isOutputtingResults() - Method in class com.codelanx.commons.util.stream.DebugStream
 
isParallel() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
isParallel() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
isParallel() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
isParallel() - Method in class com.codelanx.commons.util.stream.DebugStream
 
isSendingErrorOutput() - Method in interface com.codelanx.commons.data.SQLDataType
Determines whether or not to automatically print errors to the console
isSendingErrorOutput() - Method in class com.codelanx.commons.data.types.MySQL
 
isSendingErrorOutput() - Method in class com.codelanx.commons.data.types.SQLite
 
isSet(String) - Method in class com.codelanx.commons.data.FileDataType
Returns whether or not there is an object located at the specified path
isTrue(boolean, String, Class<T>) - Static method in class com.codelanx.commons.util.exception.Exceptions
Validates a statement is true, and throws a custom RuntimeException as specified by the passed class parameter
isTrue(boolean, Class<T>) - Static method in class com.codelanx.commons.util.exception.Exceptions
Validates a statement is true, and throws a custom RuntimeException as specified by the passed class parameter
iterator() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
iterator() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
iterator() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
iterator() - Method in class com.codelanx.commons.util.stream.DebugStream
 

J

Json - Class in com.codelanx.commons.data.types
Represents a JSON file that has been parsed and loaded into memory.
Json(File) - Constructor for class com.codelanx.commons.data.types.Json
Reads and loads a JSON file into memory
Json() - Constructor for class com.codelanx.commons.data.types.Json
 

K

keySet() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 

L

Lambdas - Class in com.codelanx.commons.util
Provides utility methods for simplifying lambda operations
Lambdas() - Constructor for class com.codelanx.commons.util.Lambdas
 
LangFile - Interface in com.codelanx.commons.config
Represents a single value that is dynamically retrieved from a FileDataType.
limit(long) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
limit(long) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
limit(long) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
limit(long) - Method in class com.codelanx.commons.util.stream.DebugStream
 
location - Variable in class com.codelanx.commons.data.FileDataType
The File location of this FileDataType
log(LogRecord) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, String) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, String, Object) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, String, Object[]) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, String, Throwable) - Static method in class com.codelanx.commons.logging.Logging
 
log(Level, Throwable, Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
logger - Variable in class com.codelanx.commons.logging.Debugger.DebugOpts
 
Logging - Class in com.codelanx.commons.logging
This is a simple proxy to a plugin's Logger class.
Logging.LoggingFacade - Class in com.codelanx.commons.logging
Simplifies logging by providing façade methods similar to Debugger
logp(Level, String, String, String) - Static method in class com.codelanx.commons.logging.Logging
 
logp(Level, String, String, Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
logp(Level, String, String, String, Object) - Static method in class com.codelanx.commons.logging.Logging
 
logp(Level, String, String, String, Object[]) - Static method in class com.codelanx.commons.logging.Logging
 
logp(Level, String, String, String, Throwable) - Static method in class com.codelanx.commons.logging.Logging
 
logp(Level, String, String, Throwable, Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, String, String) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, ResourceBundle, String, Object...) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, ResourceBundle, String, Throwable) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, String, String, Object) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, String, String, Object[]) - Static method in class com.codelanx.commons.logging.Logging
 
logrb(Level, String, String, String, String, Throwable) - Static method in class com.codelanx.commons.logging.Logging
 

M

map(DoubleUnaryOperator) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
map(IntUnaryOperator) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
map(LongUnaryOperator) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
map(Function<? super T, ? extends R>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
mapFromObject(DebuggableStreaming<D>, ToDoubleFunction<? super D>) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
mapFromObject(DebuggableStreaming<D>, ToIntFunction<? super D>) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
 
mapFromObject(DebuggableStreaming<D>, ToLongFunction<? super D>) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
 
mapToDouble(IntToDoubleFunction) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
mapToDouble(LongToDoubleFunction) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
mapToDouble(ToDoubleFunction<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
mapToInt(DoubleToIntFunction) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
mapToInt(LongToIntFunction) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
mapToInt(ToIntFunction<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
mapToLong(DoubleToLongFunction) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
mapToLong(IntToLongFunction) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
mapToLong(ToLongFunction<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
mapToObj(DoubleFunction<? extends U>) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
mapToObj(IntFunction<? extends U>) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
mapToObj(LongFunction<? extends U>) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
matchClosestKeys(Map<String, ?>, String) - Static method in class com.codelanx.commons.util.Reflections
Returns a Set of keys that closest match the passed in string value
matchClosestValues(Map<String, T>, String) - Static method in class com.codelanx.commons.util.Reflections
Returns a List of values mapped from keys that closest match the passed in string value
max() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
max() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
max() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
max(Comparator<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
MemoryConfig<T> - Interface in com.codelanx.commons.config
 
min() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
min() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
min() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
min(Comparator<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
MySQL - Class in com.codelanx.commons.data.types
Instantiable MySQL connector
MySQL(String, String, String, String, String) - Constructor for class com.codelanx.commons.data.types.MySQL
Creates a new MySQL object for use in working with a database
MySQL(MySQL.ConnectionPrefs) - Constructor for class com.codelanx.commons.data.types.MySQL
Creates a new MySQL object for use in working with a database
MySQL.ConnectionPrefs - Class in com.codelanx.commons.data.types
Subclass for managing connection preferences.

N

newCache(MySQL.ConnectionPrefs, long) - Static method in class com.codelanx.commons.data.types.MySQL
Returns a new cached MySQL connection, which will automatically renew itself at the specified interval via keepAliveMS, in milliseconds.
newInstance(Class<T>, File) - Static method in class com.codelanx.commons.data.FileDataType
Returns a new instance of a FileDataType based on the passed class instance.
NEWLINE - Static variable in class com.codelanx.commons.data.FileDataType
 
newSection() - Method in class com.codelanx.commons.data.FileDataType
 
newSection() - Method in class com.codelanx.commons.data.types.Json
 
newSection() - Method in class com.codelanx.commons.data.types.XML
 
newSection() - Method in class com.codelanx.commons.data.types.Yaml
 
noneMatch(DoublePredicate) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
noneMatch(IntPredicate) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
noneMatch(LongPredicate) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
noneMatch(Predicate<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
nonFixedList(T...) - Static method in class com.codelanx.commons.util.Reflections
Returns a new ArrayList of the passed parameters that is not fixed-size, akin to what Arrays.asList(Object...) returns
notNull(Object, String, Class<T>) - Static method in class com.codelanx.commons.util.exception.Exceptions
Provides a null check, and throws a custom RuntimeException as specified by the passed class parameter
notNull(Object, Class<T>) - Static method in class com.codelanx.commons.util.exception.Exceptions
Provides a null check, and throws a custom RuntimeException as specified by the passed class parameter
notNull(Object) - Static method in class com.codelanx.commons.util.Lambdas
Returns true if the passed object is not null
nullSafeMutation(I, Function<I, R>) - Static method in class com.codelanx.commons.util.Reflections
Provides a way of mutating an object (into a new result) without worrying about null safety.

O

objectString(Object) - Static method in class com.codelanx.commons.util.Reflections
 
of(DoubleStream) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
Creates a new DebugDoubleStream using the default type
of(DoubleStream, boolean) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
Creates a new DebugDoubleStream using the default type
of(DoubleStream, Class<? extends DebugDoubleStream>) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
Instantiates a new DebugDoubleStream of the type parameter passed to the method.
of(DoubleStream, boolean, Class<? extends DebugDoubleStream>) - Static method in class com.codelanx.commons.util.stream.DebugDoubleStream
Instantiates a new DebugDoubleStream of the type parameter passed to the method.
of(IntStream) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
Creates a new DebugIntStream using the default type
of(IntStream, boolean) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
Creates a new DebugIntStream using the default type
of(IntStream, Class<? extends DebugIntStream>) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
Instantiates a new DebugIntStream of the type parameter passed to the method.
of(IntStream, boolean, Class<? extends DebugIntStream>) - Static method in class com.codelanx.commons.util.stream.DebugIntStream
Instantiates a new DebugIntStream of the type parameter passed to the method.
of(LongStream) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
Creates a new DebugLongStream using the default type
of(LongStream, boolean) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
Creates a new DebugLongStream using the default type
of(LongStream, Class<? extends DebugLongStream>) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
Instantiates a new DebugLongStream of the type parameter passed to the method.
of(LongStream, boolean, Class<? extends DebugLongStream>) - Static method in class com.codelanx.commons.util.stream.DebugLongStream
Instantiates a new DebugLongStream of the type parameter passed to the method.
of(Stream<D>) - Static method in class com.codelanx.commons.util.stream.DebugStream
Creates a new DebugStream using the default type
of(Stream<D>, boolean) - Static method in class com.codelanx.commons.util.stream.DebugStream
Creates a new DebugStream using the default type
of(Stream<D>, Class<? extends DebugStream<D>>) - Static method in class com.codelanx.commons.util.stream.DebugStream
Instantiates a new DebugStream of the type parameter passed to the method.
of(Stream<D>, boolean, Class<? extends DebugStream>) - Static method in class com.codelanx.commons.util.stream.DebugStream
Instantiates a new DebugStream of the type parameter passed to the method.
onClose(Runnable) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
onClose(Runnable) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
onClose(Runnable) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
onClose(Runnable) - Method in class com.codelanx.commons.util.stream.DebugStream
 
onException(Consumer<SQLException>) - Method in class com.codelanx.commons.data.SQLResponse
 
onExpiry(BiConsumer<? super K1, ? super V1>) - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Sets the BiConsumer to apply to expired entries
open() - Method in class com.codelanx.commons.data.types.MySQL
Opens a connection to the SQL database.
open(File, String) - Method in class com.codelanx.commons.data.types.SQLite
Opens a connection to the SQLite database.
open(File) - Method in class com.codelanx.commons.data.types.SQLite
Opens a connection to the SQLite database.
operate(SQLFunction<? super PreparedStatement, R>, String, Object...) - Method in interface com.codelanx.commons.data.SQLDataType
Runs a PreparedStatement using the provided sql parameter.
operate(Function<? super DoubleStream, ? extends R>) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
Overridable method which runs the appropriate DoubleStream action, and outputs the result as well as which numerical call it is.
operate(Function<? super IntStream, ? extends R>) - Method in class com.codelanx.commons.util.stream.DebugIntStream
Overridable method which runs the appropriate IntStream action, and outputs the result as well as which numerical call it is.
operate(Function<? super LongStream, ? extends R>) - Method in class com.codelanx.commons.util.stream.DebugLongStream
Overridable method which runs the appropriate Stream action, and outputs the result as well as which numerical call it is.
operate(Function<? super Stream<T>, ? extends R>) - Method in class com.codelanx.commons.util.stream.DebugStream
Overridable method which runs the appropriate Stream action, and outputs the result as well as which numerical call it is.
operateLock(Lock, Runnable) - Static method in class com.codelanx.commons.util.Reflections
Performs an operation with a lock, saving room by not requiring a lot of try-finally blocks
operateLock(Lock, Supplier<R>) - Static method in class com.codelanx.commons.util.Reflections
Performs an operation with a lock, saving room by not requiring a lot of try-finally blocks
operateVoid(Consumer<? super DoubleStream>) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
Overridable method which runs the appropriate DoubleStream action, and outputs the result as well as which numerical call it is.
operateVoid(Consumer<? super IntStream>) - Method in class com.codelanx.commons.util.stream.DebugIntStream
Overridable method which runs the appropriate IntStream action, and outputs the result as well as which numerical call it is.
operateVoid(Consumer<? super LongStream>) - Method in class com.codelanx.commons.util.stream.DebugLongStream
Overridable method which runs the appropriate Stream action, and outputs the result as well as which numerical call it is.
operateVoid(Consumer<? super Stream<T>>) - Method in class com.codelanx.commons.util.stream.DebugStream
Overridable method which runs the appropriate Stream action, and outputs the result as well as which numerical call it is.
output - Variable in class com.codelanx.commons.logging.Debugger.DebugOpts
 

P

PackingQueue<E> - Class in com.codelanx.commons.util.cache
Represents a queue which flushes all of its elements upon reaching a maximum size
PackingQueue(int, Consumer<E>) - Constructor for class com.codelanx.commons.util.cache.PackingQueue
Initializes this PackingQueue for use
PackingQueue(int, Consumer<E>, boolean) - Constructor for class com.codelanx.commons.util.cache.PackingQueue
Initializes this PackingQueue for use
parallel() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
parallel() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
parallel() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
parallel() - Method in class com.codelanx.commons.util.stream.DebugStream
 
parseByte(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseDeserializable(Object) - Method in class com.codelanx.commons.data.FileDataType
 
parseDouble(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseFloat(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseInt(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseLong(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseSerializable(Object) - Method in class com.codelanx.commons.data.FileDataType
 
parseShort(String) - Static method in class com.codelanx.commons.util.Reflections
 
parseUUID(String) - Static method in class com.codelanx.commons.util.Reflections
 
peek(DoubleConsumer) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
peek(IntConsumer) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
peek(LongConsumer) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
peek(Consumer<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
pluralFormat(int, Object...) - Method in interface com.codelanx.commons.config.LangFile
Will format a string with "PLURAL" or "PLURALA" tokens in them.
prefix - Variable in class com.codelanx.commons.logging.Debugger.DebugOpts
 
prepare(String) - Method in interface com.codelanx.commons.data.SQLDataType
Returns a PreparedStatement in which you can easily protect against SQL injection attacks.
print(Level, String, Object...) - Static method in class com.codelanx.commons.logging.Debugger
Prints to the Debugging Logger if Debugger.toggleOutput(boolean) is set to true
print(String, Object...) - Static method in class com.codelanx.commons.logging.Debugger
Prints to the Debugging Logger at Level.INFO if Debugger.toggleOutput(boolean) is set to true
print(String, Object...) - Method in class com.codelanx.commons.logging.Logging.LoggingFacade
Prints a statement to the held Logger at Level.INFO
print(Level, String, Object...) - Method in class com.codelanx.commons.logging.Logging.LoggingFacade
Prints a statement to the held Logger
proper(String) - Static method in interface com.codelanx.commons.config.LangFile
Formats a string into either a proper word or sentence (First letter capitalized, if spaces are included a period is added)
proper(String, char) - Static method in interface com.codelanx.commons.config.LangFile
Formats a string into either a proper word or sentence (First letter capitalized, if spaces are included the supplied punctuation is added)
properEnumName(Enum<?>) - Static method in class com.codelanx.commons.util.Reflections
 
properName() - Method in class com.codelanx.commons.util.time.TimePoint
Returns the proper name for the current unit relevant to this point
put(K, V) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Puts value in the map for key.
put(K, V, ExpiringMap.ExpirationPolicy) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Inserts an entry to this map with a specific ExpiringMap.ExpirationPolicy
put(K, V, ExpiringMap.ExpirationPolicy, long, TimeUnit) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Puts value in the map for key.
put(K, V, long, TimeUnit) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Inserts an entry with a specific expiration time
putAll(Map<? extends K, ? extends V>) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Inserts all values from another map into this one
putIfAbsent(K, V) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 

Q

query(SQLFunction<? super ResultSet, R>, String, Object...) - Method in interface com.codelanx.commons.data.SQLDataType
Executes a query, and applies the resulting ResultSet to the passed SQLFunction.
query(SQLConsumer<? super ResultSet>, String, Object...) - Method in interface com.codelanx.commons.data.SQLDataType
Executes a query, and applies the resulting ResultSet to the passed SQLConsumer

R

RAND - Static variable in class com.codelanx.commons.util.RNG
A simple Random instance, should only be used on the program's main thread
readableStackTrace(Throwable) - Static method in class com.codelanx.commons.util.exception.Exceptions
Creates a readable stack trace from a passed Throwable.
readRaw() - Method in class com.codelanx.commons.data.FileDataType
Reads all the information currently saved in the file, disregarding any changes in memory
readRaw(File) - Method in class com.codelanx.commons.data.FileDataType
Reads all the information currently saved in the file, disregarding any changes in memory
readRaw(File) - Method in class com.codelanx.commons.data.types.Json
 
readRaw(File) - Method in class com.codelanx.commons.data.types.XML
 
readRaw(File) - Method in class com.codelanx.commons.data.types.Yaml
 
reduce(double, DoubleBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
reduce(DoubleBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
reduce(int, IntBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
reduce(IntBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
reduce(long, LongBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
reduce(LongBinaryOperator) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
reduce(T, BinaryOperator<T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
reduce(BinaryOperator<T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
reduce(U, BiFunction<U, ? super T, U>, BinaryOperator<U>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
ReferenceType - Enum in com.codelanx.commons.util.ref
An enum representing the different types of references, as well as allowing a passed object to be converted to a reference of the relevant type
Reflections - Class in com.codelanx.commons.util
Represents utility functions that utilize either java's reflection api, analysis of the current Stack in use, low-level operations, primitives, or other methods that deal with operations outside the norm of Java or Bukkit's own system
RelativePath - Annotation Type in com.codelanx.commons.config
Describes the relative abstract file path of an item
remove(Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
remove(Object, Object) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
remove(E) - Method in class com.codelanx.commons.util.EnumBitSet
Removes a constant from this set.
removeExpirationHandler(BiConsumer<K, V>) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Removes an expiration listener.
removeHandler(Handler) - Static method in class com.codelanx.commons.logging.Logging
 
replace(K, V) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
replace(K, V, V) - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
replaceAll(UnaryOperator<E>) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
report(Debugger.DebugOpts, Throwable, String) - Static method in class com.codelanx.commons.logging.Debugger.DebugUtil
Reports an error to a specific reporting URL
resetExpiration(K) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Resets expiration for the entry corresponding to key.
retrieve(T, ConfigFile) - Static method in interface com.codelanx.commons.config.ConfigFile
Retrieves an anonymous value which can utilize a ConfigFile parameter to retrieve data from any source
retrieve(FileDataType) - Method in interface com.codelanx.commons.config.ConfigFile
RNG - Class in com.codelanx.commons.util
A class of random number generators that can be used instead of instantiating new Random classes all about the program
rollback() - Method in interface com.codelanx.commons.data.SQLDataType
Cancel any queued transactions
runAsyncTask(Runnable, long) - Static method in class com.codelanx.commons.util.Scheduler
Runs a single asynchronous task
runAsyncTask(Runnable) - Static method in class com.codelanx.commons.util.Scheduler
Immediately runs a single asynchronous task
runAsyncTaskRepeat(Runnable, long, long) - Static method in class com.codelanx.commons.util.Scheduler
Runs a repeating asynchronous task
runCallable(Callable<T>, long) - Static method in class com.codelanx.commons.util.Scheduler
Runs a Callable

S

save() - Method in interface com.codelanx.commons.config.InfoFile
Saves the current file data from memory
save(File) - Method in interface com.codelanx.commons.config.InfoFile
Saves the current file data from memory to a specific File
save() - Method in class com.codelanx.commons.data.FileDataType
Saves any information in memory to the file it was loaded from.
save(File) - Method in class com.codelanx.commons.data.FileDataType
Saves any information in memory to the file specified.
save() - Method in class com.codelanx.commons.data.types.XML
 
save(File) - Method in class com.codelanx.commons.data.types.XML
 
Scheduler - Class in com.codelanx.commons.util
Façade utility class for simplifying scheduling tasks
SECURE_RAND - Static variable in class com.codelanx.commons.util.RNG
Represents a SecureRandom with a new, randomly generated seed of a pseudo-random bitlength every 10 minutes.
sequential() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
sequential() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
sequential() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
sequential() - Method in class com.codelanx.commons.util.stream.DebugStream
 
serializationCopy(Map<String, Object>) - Method in class com.codelanx.commons.data.FileDataType
 
serialize() - Method in interface com.codelanx.commons.data.FileSerializable
 
serializeArray(Object) - Method in class com.codelanx.commons.data.FileDataType
 
serializeArray(Object) - Method in class com.codelanx.commons.data.types.Json
 
serializeArray(Object) - Method in class com.codelanx.commons.data.types.XML
 
serializeArray(Object) - Method in class com.codelanx.commons.data.types.Yaml
 
serializeMap(Map<String, Object>) - Method in class com.codelanx.commons.data.FileDataType
 
serializeMap(Map<String, Object>) - Method in class com.codelanx.commons.data.types.Json
 
serializeMap(Map<String, Object>) - Method in class com.codelanx.commons.data.types.XML
 
serializeMap(Map<String, Object>) - Method in class com.codelanx.commons.data.types.Yaml
 
set(Object) - Method in interface com.codelanx.commons.config.ConfigFile
Sets a value in the FileDataType
set(Object) - Method in interface com.codelanx.commons.config.MemoryConfig
 
set(String, Object) - Method in class com.codelanx.commons.data.FileDataType
Sets the value at the location specified by the passed path
set(int, E) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
setAutoCommit(boolean) - Method in interface com.codelanx.commons.data.SQLDataType
Sets whether or not to automatically commit changes to the database.
setCurrentValue(E) - Method in class com.codelanx.commons.util.cache.Cache
Sets the value of this Cache
setCurrentValue(E) - Method in class com.codelanx.commons.util.cache.WeakCache
Sets the value of this WeakCache
setErrorOutput(boolean) - Method in interface com.codelanx.commons.data.SQLDataType
Sets whether or not to print errors to the console automatically.
setErrorOutput(boolean) - Method in class com.codelanx.commons.data.types.MySQL
 
setErrorOutput(boolean) - Method in class com.codelanx.commons.data.types.SQLite
 
setExpiration(K, long, TimeUnit) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Sets the expiration duration for the entry corresponding to the given key.
setExpiration(long, TimeUnit) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Updates the default map entry expiration.
setExpirationPolicy(ExpiringMap.ExpirationPolicy) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Sets the global expiration policy for the map.
setExpirationPolicy(K, ExpiringMap.ExpirationPolicy) - Method in class com.codelanx.commons.util.cache.ExpiringMap
Sets the expiration policy for the entry corresponding to the given key.
setFilter(Filter) - Static method in class com.codelanx.commons.logging.Logging
 
setGlobalFormat(String) - Static method in class com.codelanx.commons.logging.Logging
Sets the system/global logging format to format
setLevel(Level) - Static method in class com.codelanx.commons.logging.Logging
 
setLogger(Logger) - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
 
setNab(Supplier<Logger>) - Static method in class com.codelanx.commons.logging.Logging
 
setNicerFormat() - Static method in class com.codelanx.commons.logging.Logging
Sets the system/global logging format to: [hour:minute:second] LOGLEVEL: output\n
setOps(Supplier<Debugger.DebugOpts>) - Static method in class com.codelanx.commons.logging.Debugger.DebugUtil
 
setParent(Logger) - Static method in class com.codelanx.commons.logging.Logging
 
setReportingURL(String) - Static method in class com.codelanx.commons.logging.Debugger
Sets the URL to send a JSON payload of server information to as well as any other relevant information for when a stack trace occurs.
setResourceBundle(ResourceBundle) - Static method in class com.codelanx.commons.logging.Logging
 
setUrl(String) - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Sets the URL to report errors to
setUseParentHandlers(boolean) - Static method in class com.codelanx.commons.logging.Logging
 
setValue(T) - Method in interface com.codelanx.commons.config.MemoryConfig
 
setValue(E) - Method in class com.codelanx.commons.util.ref.StrongReference
Sets the stored value
severe(String) - Static method in class com.codelanx.commons.logging.Logging
 
severe(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
simple() - Static method in class com.codelanx.commons.logging.Logging
Returns a Logging.LoggingFacade which allows for simpler methods of printing via Logging
simpleErrorOutput(SQLException) - Static method in class com.codelanx.commons.util.Databases
Formats an SQLException to be output with more information about the error
size() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
skip(long) - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
skip(long) - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
skip(long) - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
skip(long) - Method in class com.codelanx.commons.util.stream.DebugStream
 
sort() - Method in class com.codelanx.commons.util.ImplicitSortedList
 
sort(Comparator<? super E>) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
sorted() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
sorted() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
sorted() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
sorted() - Method in class com.codelanx.commons.util.stream.DebugStream
 
sorted(Comparator<? super T>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
spliterator() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
spliterator() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
spliterator() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
spliterator() - Method in class com.codelanx.commons.util.stream.DebugStream
 
SQLConsumer<T> - Interface in com.codelanx.commons.data
Represents an operation that accepts a single input argument and returns no result.
SQLDataType - Interface in com.codelanx.commons.data
Represents an object that connects to an SQL database and allows operations to be made upon it
SQLFunction<T,R> - Interface in com.codelanx.commons.data
Represents an SQL function that accepts one argument and produces a result.
SQLite - Class in com.codelanx.commons.data.types
Instantiable SQLite connector
SQLite() - Constructor for class com.codelanx.commons.data.types.SQLite
 
SQLResponse<T> - Class in com.codelanx.commons.data
Class description for SQLResponse
SQLResponse() - Constructor for class com.codelanx.commons.data.SQLResponse
 
SQLResponse(SQLException) - Constructor for class com.codelanx.commons.data.SQLResponse
 
SQLResponse(T) - Constructor for class com.codelanx.commons.data.SQLResponse
 
SQLResponse(int) - Constructor for class com.codelanx.commons.data.SQLResponse
 
stackTraceToString(Throwable) - Static method in class com.codelanx.commons.util.Reflections
Converts a stack trace into a String for ease-of-use in network-level debugging
stream(Iterable<T>) - Static method in class com.codelanx.commons.util.Reflections
Façade method for streaming Iterable, so that Iterable can be accepted as a general parameter
stream(T...) - Static method in class com.codelanx.commons.util.Reflections
Façade method for arrays, to simplify accepting general parameters even further
StrongReference<E> - Class in com.codelanx.commons.util.ref
Holds a single strong reference to a stored object
StrongReference(E) - Constructor for class com.codelanx.commons.util.ref.StrongReference
Constructor.
subList(int, int) - Method in class com.codelanx.commons.util.ImplicitSortedList
 
sum() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
sum() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
sum() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
summaryStatistics() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
summaryStatistics() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
summaryStatistics() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 

T

THREAD_LOCAL() - Static method in class com.codelanx.commons.util.RNG
Returns the ThreadLocalRandom specific to the calling thread
throwing(String, String, Throwable) - Static method in class com.codelanx.commons.logging.Logging
 
TimePoint - Class in com.codelanx.commons.util.time
Represents a relative, specific amount of time
TimePoint(long, TimeUnit, TimePoint) - Constructor for class com.codelanx.commons.util.time.TimePoint
Constructs a new TimePoint
TimeUtil - Class in com.codelanx.commons.util.time
Provides utility method for determining differences in time as well as providing ways to utilize things such as timers
toArray() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
toArray() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
toArray() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
toArray() - Method in class com.codelanx.commons.util.stream.DebugStream
 
toArray(IntFunction<A[]>) - Method in class com.codelanx.commons.util.stream.DebugStream
 
toggleOutput(boolean) - Method in class com.codelanx.commons.logging.Debugger.DebugOpts
Toggles whether or not to print information to the debugger
toggleOutput(boolean) - Static method in class com.codelanx.commons.logging.Debugger
Sets whether or not to actually output any calls from your plugin to the Debugger.
toSafeReference(T) - Method in enum com.codelanx.commons.util.ref.ReferenceType
Converts the passed-in object to a reference of this constant's type
toSafeReference(T, ReferenceQueue<? extends T>) - Method in enum com.codelanx.commons.util.ref.ReferenceType
Converts the passed-in object to a reference of this constant's type
toSet(Class<E>) - Method in class com.codelanx.commons.util.EnumBitSet
Converts this EnumBitSet into a EnumSet containing all the elements that this set "has".
toString(Map<String, Object>) - Method in class com.codelanx.commons.data.FileDataType
 
toString() - Method in class com.codelanx.commons.data.types.Json
 
toString(Map<String, Object>) - Method in class com.codelanx.commons.data.types.Json
 
toString(Map<String, Object>) - Method in class com.codelanx.commons.data.types.XML
 
toString(Map<String, Object>) - Method in class com.codelanx.commons.data.types.Yaml
 
toString() - Method in class com.codelanx.commons.data.types.Yaml
 
toString() - Method in class com.codelanx.commons.util.cache.ExpiringMap
 
toString() - Method in class com.codelanx.commons.util.ref.Box
 
toString() - Method in class com.codelanx.commons.util.ref.Tuple
 
toUnsafeReference(T) - Method in enum com.codelanx.commons.util.ref.ReferenceType
Converts the passed-in object to a reference of this constant's type
toUnsafeReference(T, ReferenceQueue<? extends T>) - Method in enum com.codelanx.commons.util.ref.ReferenceType
Converts the passed-in object to a reference of this constant's type
trace() - Static method in class com.codelanx.commons.util.Reflections
Prints out the stack history 10 calls back
trace(int) - Static method in class com.codelanx.commons.util.Reflections
Prints out the stack history length calls back
Tuple<E,T> - Class in com.codelanx.commons.util.ref
Represents a wrapper class for a pair of objects
Tuple(E, T) - Constructor for class com.codelanx.commons.util.ref.Tuple
Constructor.

U

unordered() - Method in class com.codelanx.commons.util.stream.DebugDoubleStream
 
unordered() - Method in class com.codelanx.commons.util.stream.DebugIntStream
 
unordered() - Method in class com.codelanx.commons.util.stream.DebugLongStream
 
unordered() - Method in class com.codelanx.commons.util.stream.DebugStream
 
unsupportedOperation(boolean, String) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an UnsupportedOperationException if the value of the state parameter is false
unsupportedOperation(boolean) - Static method in class com.codelanx.commons.util.exception.Exceptions
Throws an UnsupportedOperationException if the value of the state parameter is false
update(String, Object...) - Method in interface com.codelanx.commons.data.SQLDataType
Executes a query that can change values
update() - Method in class com.codelanx.commons.util.cache.Cache
Called when a variable needs to be updated.
url - Variable in class com.codelanx.commons.logging.Debugger.DebugOpts
 

V

value - Variable in class com.codelanx.commons.util.ref.Box
The value of the Box<T>
valueOf(String) - Static method in enum com.codelanx.commons.util.cache.ExpiringMap.ExpirationPolicy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.codelanx.commons.util.ref.ReferenceType
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.codelanx.commons.util.cache.ExpiringMap.ExpirationPolicy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in class com.codelanx.commons.util.cache.ExpiringMap
Note this method maps internal entries into values upon each specific call.
values() - Static method in enum com.codelanx.commons.util.ref.ReferenceType
Returns an array containing the constants of this enum type, in the order they are declared.
valuesIterator() - Method in class com.codelanx.commons.util.cache.ExpiringMap
Returns an iterator over the map values.
variableExpiration() - Method in class com.codelanx.commons.util.cache.ExpiringMap.Builder
Allows for map entries to have individual expirations and for expirations to be changed.

W

warning(String) - Static method in class com.codelanx.commons.logging.Logging
 
warning(Supplier<String>) - Static method in class com.codelanx.commons.logging.Logging
 
WeakCache<E> - Class in com.codelanx.commons.util.cache
Represents a single variable which will be dynamically updated upon an internal WeakReference being null upon accessing
WeakCache(Supplier<? extends E>) - Constructor for class com.codelanx.commons.util.cache.WeakCache
Stores the Supplier for the cached value
WeakCache(Supplier<? extends E>, boolean) - Constructor for class com.codelanx.commons.util.cache.WeakCache
Stores the Supplier for the cached value

X

XML - Class in com.codelanx.commons.data.types
Created by Rogue on 1/18/16.
XML(File) - Constructor for class com.codelanx.commons.data.types.XML
 
XML() - Constructor for class com.codelanx.commons.data.types.XML
 

Y

Yaml - Class in com.codelanx.commons.data.types
Created by Rogue on 1/16/16.
Yaml(File) - Constructor for class com.codelanx.commons.data.types.Yaml
 
Yaml() - Constructor for class com.codelanx.commons.data.types.Yaml
 
A B C D E F G H I J K L M N O P Q R S T U V W X Y 
Skip navigation links

Copyright © 2017. All rights reserved.