A B C D E F G H I L M O P Q R S T U 
All Classes All Packages

A

ApacheCommonsExceptionUtil - Class in co.aikar.idb
Provides utilities for manipulating and examining Throwable objects.
ApacheCommonsExceptionUtil() - Constructor for class co.aikar.idb.ApacheCommonsExceptionUtil
Public constructor allows an instance of ExceptionUtils to be created, although that is not normally necessary.
ApacheCommonsExceptionUtil.Nestable - Interface in co.aikar.idb
An interface to be implemented by Throwable extensions which would like to be able to nest root exceptions inside themselves.
apply(DbStatement) - Method in interface co.aikar.idb.TransactionCallback
 
asyncThreadTimeout(int) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 

B

BaseDatabase - Class in co.aikar.idb
 
BaseDatabase(DatabaseOptions) - Constructor for class co.aikar.idb.BaseDatabase
 
build() - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
build() - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
builder() - Static method in class co.aikar.idb.DatabaseOptions
 
builder() - Static method in class co.aikar.idb.PooledDatabaseOptions
 

C

canEqual(Object) - Method in class co.aikar.idb.DatabaseOptions
 
canEqual(Object) - Method in class co.aikar.idb.PooledDatabaseOptions
 
clone() - Method in class co.aikar.idb.DbRow
 
close() - Method in interface co.aikar.idb.Database
Called in onDisable, destroys the Data source and nulls out references.
close() - Method in interface co.aikar.idb.DatabaseTiming
 
close() - Static method in class co.aikar.idb.DB
Called in onDisable, destroys the Data source and nulls out references.
close() - Method in class co.aikar.idb.DbStatement
Closes all resources associated with this statement and returns the connection to the db.
close(long, TimeUnit) - Method in class co.aikar.idb.BaseDatabase
 
close(long, TimeUnit) - Method in interface co.aikar.idb.Database
Called in onDisable, destroys the Data source and nulls out references.
close(long, TimeUnit) - Static method in class co.aikar.idb.DB
 
closeConnection(Connection) - Method in interface co.aikar.idb.Database
 
co.aikar.idb - package co.aikar.idb
 
commit() - Method in class co.aikar.idb.DbStatement
Commits a pending transaction on this connection
createHikariDatabase() - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
createStatement() - Method in interface co.aikar.idb.Database
Initiates a new DbStatement
createTransaction(TransactionCallback) - Method in interface co.aikar.idb.Database
 
createTransaction(TransactionCallback) - Static method in class co.aikar.idb.DB
 
createTransactionAsync(TransactionCallback) - Method in interface co.aikar.idb.Database
 
createTransactionAsync(TransactionCallback) - Static method in class co.aikar.idb.DB
 
createTransactionAsync(TransactionCallback, Runnable, Runnable) - Method in interface co.aikar.idb.Database
 
createTransactionAsync(TransactionCallback, Runnable, Runnable) - Static method in class co.aikar.idb.DB
 

D

Database - Interface in co.aikar.idb
 
DatabaseOptions - Class in co.aikar.idb
 
DatabaseOptions.DatabaseOptionsBuilder - Class in co.aikar.idb
 
DatabaseTiming - Interface in co.aikar.idb
 
dataSourceClassName(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
dataSourceProperties(Map<String, Object>) - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
DB - Class in co.aikar.idb
 
DbRow - Class in co.aikar.idb
TypeDef alias for results with a template return type getter so casting/implicit getInt type calls are not needed.
DbRow() - Constructor for class co.aikar.idb.DbRow
 
DbStatement - Class in co.aikar.idb
Manages a connection to the database db and lets you work with an active prepared statement.
DbStatement() - Constructor for class co.aikar.idb.DbStatement
 
DbStatement(Database) - Constructor for class co.aikar.idb.DbStatement
 
defaultIsolationLevel(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
dispatchAsync(Callable<T>) - Method in class co.aikar.idb.BaseDatabase
 
dispatchAsync(Callable<T>) - Method in interface co.aikar.idb.Database
 
driverClassName(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
dsn(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
JDBC DSN to connect to

E

equals(Object) - Method in class co.aikar.idb.DatabaseOptions
 
equals(Object) - Method in class co.aikar.idb.PooledDatabaseOptions
 
execute(Object...) - Method in class co.aikar.idb.DbStatement
Executes the prepared statement with the supplied parameters.
executeInsert(String, Object...) - Method in interface co.aikar.idb.Database
Utility method for executing an update synchronously that does an insert, closes the statement, and returns the last insert ID.
executeInsert(String, Object...) - Static method in class co.aikar.idb.DB
Utility method for executing an update synchronously that does an insert, closes the statement, and returns the last insert ID.
executeQueryGetFirstColumn(String, Object...) - Method in class co.aikar.idb.DbStatement
Helper to query, execute and get first column
executeQueryGetFirstColumnResults(String, Object...) - Method in class co.aikar.idb.DbStatement
Helper to query, execute and get first column of all results
executeQueryGetFirstRow(String, Object...) - Method in class co.aikar.idb.DbStatement
Helper method to query, execute and get first row
executeQueryGetResults(String, Object...) - Method in class co.aikar.idb.DbStatement
Helper method to query, execute and getResults
executeUpdate(Object...) - Method in class co.aikar.idb.DbStatement
Execute an update query with the supplied parameters
executeUpdate(String, Object...) - Method in interface co.aikar.idb.Database
Utility method for executing an update synchronously, and then close the statement.
executeUpdate(String, Object...) - Static method in class co.aikar.idb.DB
Utility method for executing an update synchronously, and then close the statement.
executeUpdateAsync(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute an update statement asynchronously and close the connection.
executeUpdateAsync(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute an update statement asynchronously and close the connection.
executeUpdateQuery(String, Object...) - Method in class co.aikar.idb.DbStatement
Helper method to query and execute update
executor(ExecutorService) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 

F

fatalError(Exception) - Method in interface co.aikar.idb.Database
 
fatalError(Exception) - Static method in class co.aikar.idb.DB
 
favorDataSourceOverDriver(boolean) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 

G

get(String) - Method in class co.aikar.idb.DbRow
Get the result as proper type.
get(String, T) - Method in class co.aikar.idb.DbRow
Get the result as proper type., returning default if not found.
getAsyncThreadTimeout() - Method in class co.aikar.idb.DatabaseOptions
 
getCause() - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the reference to the exception or error that caused the exception implementing the Nestable to be thrown.
getCause(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Introspects the Throwable to obtain the cause.
getCause(Throwable, String[]) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Introspects the Throwable to obtain the cause.
getConnection() - Method in class co.aikar.idb.BaseDatabase
 
getConnection() - Method in interface co.aikar.idb.Database
Get a JDBC Connection
getDataSourceClassName() - Method in class co.aikar.idb.DatabaseOptions
Class name of DataSource to use
getDataSourceProperties() - Method in class co.aikar.idb.PooledDatabaseOptions
 
getDbl(String) - Method in class co.aikar.idb.DbRow
 
getDbl(String, Number) - Method in class co.aikar.idb.DbRow
 
getDefaultIsolationLevel() - Method in class co.aikar.idb.DatabaseOptions
 
getDriverClassName() - Method in class co.aikar.idb.DatabaseOptions
JDBC Classname of the Driver name to use
getDsn() - Method in class co.aikar.idb.DatabaseOptions
JDBC DSN to connect to
getExecutor() - Method in class co.aikar.idb.DatabaseOptions
 
getFirstColumn() - Method in class co.aikar.idb.DbStatement
 
getFirstColumn(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve the first column of the first row, then close statement.
getFirstColumn(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve the first column of the first row, then close statement.
getFirstColumnAsync(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve the first column of the first row, then close statement.
getFirstColumnAsync(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve the first column of the first row, then close statement.
getFirstColumnResults(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve first column of all results, then close statement.
getFirstColumnResults(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve first column of all results, then close statement.
getFirstColumnResultsAsync(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve first column of all results, then close statement.
getFirstColumnResultsAsync(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve first column of all results, then close statement.
getFirstRow(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve the first row, then close statement.
getFirstRow(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve the first row, then close statement.
getFirstRowAsync(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve the first row, then close statement.
getFirstRowAsync(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve the first row, then close statement.
getFloat(String) - Method in class co.aikar.idb.DbRow
 
getFloat(String, Number) - Method in class co.aikar.idb.DbRow
 
getFullStackTrace(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
A way to get the entire nested stack-trace of an throwable.
getGlobalDatabase() - Static method in class co.aikar.idb.DB
 
getInt(String) - Method in class co.aikar.idb.DbRow
 
getInt(String, Number) - Method in class co.aikar.idb.DbRow
 
getLastInsertId() - Method in class co.aikar.idb.DbStatement
Gets the Id of last insert
getLogger() - Method in class co.aikar.idb.BaseDatabase
 
getLogger() - Method in interface co.aikar.idb.Database
Get the Logger
getLogger() - Method in class co.aikar.idb.DatabaseOptions
 
getLong(String) - Method in class co.aikar.idb.DbRow
 
getLong(String, Number) - Method in class co.aikar.idb.DbRow
 
getMaxAsyncThreads() - Method in class co.aikar.idb.DatabaseOptions
For Async queries, maximum threads in the pool to use.
getMaxConnections() - Method in class co.aikar.idb.PooledDatabaseOptions
 
getMessage() - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the error message of this and any nested Throwable.
getMessage(int) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the error message of the Throwable in the chain of Throwables at the specified index, numbered from 0.
getMessages() - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the error message of this and any nested Throwables in an array of Strings, one element for each message.
getMinAsyncThreads() - Method in class co.aikar.idb.DatabaseOptions
For Async queries, minimum threads in the pool to use.
getMinIdleConnections() - Method in class co.aikar.idb.PooledDatabaseOptions
 
getNextRow() - Method in class co.aikar.idb.DbStatement
Gets the next DbRow from the result set.
getOnDatabaseConnectionFailure() - Method in class co.aikar.idb.DatabaseOptions
 
getOnFatalError() - Method in class co.aikar.idb.DatabaseOptions
 
getOptions() - Method in class co.aikar.idb.BaseDatabase
 
getOptions() - Method in interface co.aikar.idb.Database
Get the options object
getOptions() - Method in class co.aikar.idb.PooledDatabaseOptions
 
getPass() - Method in class co.aikar.idb.DatabaseOptions
 
getPoolName() - Method in class co.aikar.idb.DatabaseOptions
 
getPoolOptions() - Method in class co.aikar.idb.HikariPooledDatabase
 
getResults() - Method in class co.aikar.idb.DbStatement
Gets all results as an array of DbRow
getResults(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve all results, then close statement.
getResults(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve all results, then close statement.
getResultsAsync(String, Object...) - Method in interface co.aikar.idb.Database
Utility method to execute a query and retrieve all results, then close statement.
getResultsAsync(String, Object...) - Static method in class co.aikar.idb.DB
Utility method to execute a query and retrieve all results, then close statement.
getRootCause(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Introspects the Throwable to obtain the root cause.
getStackTrace(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Gets the stack trace from a Throwable as a String.
getString(String) - Method in class co.aikar.idb.DbRow
 
getString(String, String) - Method in class co.aikar.idb.DbRow
 
getThrowable(int) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the Throwable in the chain of Throwables at the specified index, numbered from 0.
getThrowableCount() - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the number of nested Throwables represented by this Nestable, including this Nestable.
getThrowableCount(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Counts the number of Throwable objects in the exception chain.
getThrowableList(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the list of Throwable objects in the exception chain.
getThrowables() - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns this Nestable and any nested Throwables in an array of Throwables, one element for each Throwable.
getThrowables(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the list of Throwable objects in the exception chain.
getTimingsProvider() - Method in class co.aikar.idb.DatabaseOptions
 
getUser() - Method in class co.aikar.idb.DatabaseOptions
 

H

hashCode() - Method in class co.aikar.idb.DatabaseOptions
 
hashCode() - Method in class co.aikar.idb.PooledDatabaseOptions
 
HikariPooledDatabase - Class in co.aikar.idb
 
HikariPooledDatabase(PooledDatabaseOptions) - Constructor for class co.aikar.idb.HikariPooledDatabase
 

I

indexOfThrowable(Class) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the index, numbered from 0, of the first occurrence of the specified type, or a subclass, in the chain of Throwables.
indexOfThrowable(Class, int) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Returns the index, numbered from 0, of the first Throwable that matches the specified type, or a subclass, in the chain of Throwables with an index greater than or equal to the specified index.
indexOfThrowable(Throwable, Class) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the (zero based) index of the first Throwable that matches the specified class (exactly) in the exception chain.
indexOfThrowable(Throwable, Class, int) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the (zero based) index of the first Throwable that matches the specified type in the exception chain from a specified index.
indexOfType(Throwable, Class) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the (zero based) index of the first Throwable that matches the specified class or subclass in the exception chain.
indexOfType(Throwable, Class, int) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Returns the (zero based) index of the first Throwable that matches the specified type in the exception chain from a specified index.
inTransaction() - Method in class co.aikar.idb.DbStatement
 
isClosed() - Method in class co.aikar.idb.DbStatement
 
isFavorDataSourceOverDriver() - Method in class co.aikar.idb.DatabaseOptions
 
isNestedThrowable(Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Checks whether this Throwable class can store a cause.
isThrowableNested() - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Checks if the Throwable class has a getCause method.
isUseOptimizations() - Method in class co.aikar.idb.DatabaseOptions
 

L

logException(Exception) - Method in interface co.aikar.idb.Database
 
logException(Exception) - Static method in class co.aikar.idb.DB
 
logException(String, Exception) - Method in interface co.aikar.idb.Database
 
logException(String, Exception) - Static method in class co.aikar.idb.DB
 
logException(Logger, Level, String, Exception) - Static method in class co.aikar.idb.DB
 
logger(Logger) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 

M

maxAsyncThreads(int) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
For Async queries, maximum threads in the pool to use.
maxConnections(int) - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
minAsyncThreads(int) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
For Async queries, minimum threads in the pool to use.
minIdleConnections(int) - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
mysql(String, String, String, String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 

O

of(String) - Method in interface co.aikar.idb.TimingsProvider
 
of(String, DatabaseTiming) - Method in interface co.aikar.idb.TimingsProvider
 
ofStart(String) - Method in interface co.aikar.idb.TimingsProvider
 
ofStart(String, DatabaseTiming) - Method in interface co.aikar.idb.TimingsProvider
 
onCommit(Consumer<DbStatement>) - Method in class co.aikar.idb.DbStatement
When this connection is rolled back, run this method.
onDatabaseConnectionFailure(Consumer<Exception>) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
onFatalError(Consumer<Exception>) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
onRollback(Consumer<DbStatement>) - Method in class co.aikar.idb.DbStatement
When this connection is rolled back, run this method.
options(DatabaseOptions) - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 

P

pass(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
PooledDatabaseOptions - Class in co.aikar.idb
 
PooledDatabaseOptions.PooledDatabaseOptionsBuilder - Class in co.aikar.idb
 
poolName(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
printPartialStackTrace(PrintWriter) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Prints the stack trace for this exception only--root cause not included--using the provided writer.
printStackTrace(PrintStream) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Prints the stack trace of this exception to the specified print stream.
printStackTrace(PrintWriter) - Method in interface co.aikar.idb.ApacheCommonsExceptionUtil.Nestable
Prints the stack trace of this exception to the specified print writer.

Q

query - Variable in class co.aikar.idb.DbStatement
 
query(String) - Method in interface co.aikar.idb.Database
Initiates a new DbStatement and prepares the first query.
query(String) - Method in class co.aikar.idb.DbStatement
Initiates a new prepared statement on this connection.
queryAsync(String) - Method in interface co.aikar.idb.Database
Initiates a new DbStatement and prepares the first query.

R

remove(String) - Method in class co.aikar.idb.DbRow
Removes a result, returning as proper type.
remove(String, T) - Method in class co.aikar.idb.DbRow
Removes a result, returning as proper type, returning default if not found
removeCauseMethodName(String) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Removes from the list of method names used in the search for Throwable objects.
removeCommonFrames(List, List) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Removes common frames from the cause trace given the two stack traces.
rollback() - Method in class co.aikar.idb.DbStatement
Rollsback a pending transaction on this connection.
runTransaction(DbStatement) - Method in interface co.aikar.idb.TransactionCallback
 

S

setAsyncThreadTimeout(int) - Method in class co.aikar.idb.DatabaseOptions
 
setCause(Throwable, Throwable) - Static method in class co.aikar.idb.ApacheCommonsExceptionUtil
Sets the cause of a Throwable using introspection, allowing source code compatibility between pre-1.4 and post-1.4 Java releases.
setDataSourceClassName(String) - Method in class co.aikar.idb.DatabaseOptions
Class name of DataSource to use
setDataSourceProperties(Map<String, Object>) - Method in class co.aikar.idb.PooledDatabaseOptions
 
setDefaultIsolationLevel(String) - Method in class co.aikar.idb.DatabaseOptions
 
setDriverClassName(String) - Method in class co.aikar.idb.DatabaseOptions
JDBC Classname of the Driver name to use
setDsn(String) - Method in class co.aikar.idb.DatabaseOptions
JDBC DSN to connect to
setExecutor(ExecutorService) - Method in class co.aikar.idb.DatabaseOptions
 
setFavorDataSourceOverDriver(boolean) - Method in class co.aikar.idb.DatabaseOptions
 
setGlobalDatabase(Database) - Static method in class co.aikar.idb.DB
 
setLogger(Logger) - Method in class co.aikar.idb.DatabaseOptions
 
setMaxAsyncThreads(int) - Method in class co.aikar.idb.DatabaseOptions
For Async queries, maximum threads in the pool to use.
setMaxConnections(int) - Method in class co.aikar.idb.PooledDatabaseOptions
 
setMinAsyncThreads(int) - Method in class co.aikar.idb.DatabaseOptions
For Async queries, minimum threads in the pool to use.
setMinIdleConnections(int) - Method in class co.aikar.idb.PooledDatabaseOptions
 
setOnDatabaseConnectionFailure(Consumer<Exception>) - Method in class co.aikar.idb.DatabaseOptions
 
setOnFatalError(Consumer<Exception>) - Method in class co.aikar.idb.DatabaseOptions
 
setOptions(DatabaseOptions) - Method in class co.aikar.idb.PooledDatabaseOptions
 
setPass(String) - Method in class co.aikar.idb.DatabaseOptions
 
setPoolName(String) - Method in class co.aikar.idb.DatabaseOptions
 
setTimingsProvider(TimingsProvider) - Method in class co.aikar.idb.DatabaseOptions
 
setUseOptimizations(boolean) - Method in class co.aikar.idb.DatabaseOptions
 
setUser(String) - Method in class co.aikar.idb.DatabaseOptions
 
sqlite(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
startTiming() - Method in interface co.aikar.idb.DatabaseTiming
 
startTransaction() - Method in class co.aikar.idb.DbStatement
Starts a transaction on this connection
stopTiming() - Method in interface co.aikar.idb.DatabaseTiming
 

T

timings(String) - Method in class co.aikar.idb.BaseDatabase
 
timings(String) - Method in interface co.aikar.idb.Database
Create a Timings object
timingsProvider(TimingsProvider) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
TimingsProvider - Interface in co.aikar.idb
 
toBuilder() - Method in class co.aikar.idb.DatabaseOptions
 
toBuilder() - Method in class co.aikar.idb.PooledDatabaseOptions
 
toString() - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
toString() - Method in class co.aikar.idb.DatabaseOptions
 
toString() - Method in class co.aikar.idb.PooledDatabaseOptions.PooledDatabaseOptionsBuilder
 
toString() - Method in class co.aikar.idb.PooledDatabaseOptions
 
TransactionCallback - Interface in co.aikar.idb
 
tryDataSourceClassName(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
Tries the specified JDBC DataSource, and uses it if it is valid.
tryDriverClassName(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
Tries the specified JDBC driverClassName, and uses it if it is valid.

U

useOptimizations(boolean) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
user(String) - Method in class co.aikar.idb.DatabaseOptions.DatabaseOptionsBuilder
 
A B C D E F G H I L M O P Q R S T U 
All Classes All Packages