| Package | Description |
|---|---|
| javatools.administrative | |
| javatools.database | |
| javatools.datatypes |
| Modifier and Type | Method and Description |
|---|---|
Database |
NonsharedParameters.getDatabase()
Returns the database defined in this ini-file
|
static Database |
Parameters.getDatabase()
Returns the database defined in this ini-file
|
| Modifier and Type | Class and Description |
|---|---|
class |
DummyDatabase
This class is part of the Java Tools (see
http://mpii.de/yago-naga/javatools).
|
class |
MySQLDatabase
This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
|
class |
OracleDatabase
This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
|
class |
PostgresDatabase
This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
|
| Modifier and Type | Field and Description |
|---|---|
protected Database |
DBWordNet.database
Holds the database
|
| Modifier and Type | Method and Description |
|---|---|
Database |
DBWordNet.getDatabase()
Returns the database
|
| Modifier and Type | Method and Description |
|---|---|
static void |
DBWordNet.construct(Database db,
java.io.File wordNetFolder)
Fills the database with WordNet data
|
void |
DBWordNet.Table.load(Database db,
java.io.File wordNetFolder)
Loads this table to a given database from a folder with the Prolog version of WordNet
|
| Constructor and Description |
|---|
DBWordNet(Database db)
Constructs a new DBWordNet, basing on a filled database
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
StringModifier.implodeForDB(java.util.Collection<?> col,
java.lang.String delim,
Database database) |
static java.lang.String |
StringModifier.implodeForDB(java.util.Iterator<?> it,
java.lang.String delim,
Database database) |
static <T,K> java.lang.String |
StringModifier.implodeForDB(java.util.Iterator<java.util.Map.Entry<T,K>> it,
java.lang.String keyValueDelim,
java.lang.String pairDelim,
Database database,
boolean formatKey,
boolean formatValue)
Concatenates key value pairs of a Map.Entry iterator into a combined String,
separating each key from its value by a key-value delimeter
and each key-value pair by pair delimeter
while optionally applying the database.format function to each key/value
|
static java.lang.String |
StringModifier.implodeForDB(java.util.Map<?,?> map,
java.lang.String keyValueDelim,
java.lang.String pairDelim,
Database database,
boolean formatKey,
boolean formatValue)
Concatenates key value pairs of a Map into a combined String,
separating each key from its value by a key-value delimeter
and each key-value pair by pair delimeter
while optionally applying the database.format function to each key/value
|
static <T> java.lang.String |
StringModifier.implodeForDB(T[] col,
java.lang.String delim,
Database database) |
static java.lang.String |
StringModifier.implodeForDBAsConditions(java.util.Map<?,?> map,
Database database)
Concatenates key value pairs of a Map into a combined String
representing the pairs as independent column conditions for a database query,
applying the database.format function to each value
|