A C D E F G I J O P R S T U V W

A

AccessMethodsForAny<T> - Class in ch.agent.crnickl.jdbc
An implementation of ValueAccessMethods which stores values as strings.
AccessMethodsForAny() - Constructor for class ch.agent.crnickl.jdbc.AccessMethodsForAny
Construct an access method object.
AccessMethodsForNumber - Class in ch.agent.crnickl.jdbc
An implementation of ValueAccessMethods for numeric data using Double.
AccessMethodsForNumber() - Constructor for class ch.agent.crnickl.jdbc.AccessMethodsForNumber
Construct an access method object.
ATTRIBUTE_VALUE - Static variable in interface ch.agent.crnickl.jdbc.DB
 

C

ch.agent.crnickl.jdbc - package ch.agent.crnickl.jdbc
A JDBC implementation of the CrNiCKL (chronicle) database.
CHRONICLE - Static variable in interface ch.agent.crnickl.jdbc.DB
 
close(PreparedStatement) - Method in class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
Close the prepared statement.
close(boolean) - Method in class ch.agent.crnickl.jdbc.JDBCSession
Close the JDBC connection if it is open.
commit() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
commit() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Commit the current transaction.
configure(DatabaseConfiguration) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableChronicle) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableSeries<T>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableProperty<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableValueType<T>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableSchema) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
create(UpdatableSchema, int, String, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
createChronicle(Chronicle) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Create a chronicle in the database.
createProperty(Property<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForProperty
Create a new property and return its key.
createSchema(UpdatableSchemaImpl, Schema) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Create an empty schema in the database.
createSchemaComponent(UpdatableSchema, int, String, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Create an attribute definition in the database.
createSeries(Series<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Create an empty series.
createValueType(ValueType<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForValueType
Create a value type in the database.

D

DB - Interface in ch.agent.crnickl.jdbc
Provides constants for table names.
deleteAttribute(Chronicle, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Delete an attribute value from a chronicle.
deleteAttributeInSchema(UpdatableSchema, int, int) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteAttributeValue(UpdatableChronicle, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteChronicle(UpdatableChronicle) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteChronicle(UpdatableChronicle, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Delete a chronicle from the database.
deleteProperty(UpdatableProperty<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteProperty(Property<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForProperty
Delete the property.
deleteSchema(UpdatableSchema) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteSchema(UpdatableSchemaImpl, SchemaUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Delete a schema from the database.
deleteSchemaComponent(UpdatableSchema, int, int) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Delete an attribute definition from the database.
deleteSchemaComponents(UpdatableSchema, int) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Delete a series definition from the database.
deleteSeries(UpdatableSeries<T>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteSeries(UpdatableSeries<?>, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Delete a series.
deleteSeriesInSchema(UpdatableSchema, int) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteValue(UpdatableSeries<T>, TimeIndex, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
deleteValue(UpdatableSeries<Double>, TimeIndex, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
deleteValueType(UpdatableValueType<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
deleteValueType(ValueType<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForValueType
Delete a value type from the database.

E

exception(String, Object...) - Static method in class ch.agent.crnickl.jdbc.T2DBJMsg
Return a keyed exception.
exception(Throwable, String, Object...) - Static method in class ch.agent.crnickl.jdbc.T2DBJMsg
Return a keyed exception.
executeAndGetNewId(PreparedStatement) - Method in class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
Execute a prepared statement of the "insertion" type and return the generated key.

F

findChronicles(Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
findChronicles(Property<?>, Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
findChronicles(SeriesDefinition, Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
findChronicles(Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Find all chronicles referencing one of the schemas.
findChronicles(Property<?>, Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Find all chronicles with an explicit attribute value for a given property and schemas.
findChronicles(SeriesDefinition, Collection<UpdatableSchema>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Find all chronicles with actual series in a collection of schemas.

G

getAttributeValue(List<Chronicle>, Attribute<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getAttributeValue(List<Chronicle>, Attribute<?>) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
The method completes the attribute with the value found for one of the entities in the list and returns true.
getChronicle(Chronicle) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getChronicle(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Find a chronicle corresponding to a surrogate.
getChronicleOrNull(Chronicle, String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getChronicleOrNull(Chronicle, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Find a chronicle with a given parent and name.
getChroniclesByAttributeValue(Property<T>, T, int) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getChroniclesByAttributeValue(Property<T>, T, int) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Return a list of chronicles with a given value for a given property.
getChroniclesByParent(Chronicle) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getChroniclesByParent(Chronicle) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Return the collection of chronicles with a given direct parent.
getConnection() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getConnection() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Return the JDBC connection.
getFirst(Series<T>, TimeIndex) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
getFirst(Series<Double>, TimeIndex) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
getId() - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema.RawSchema
Return the id.
getInstance() - Static method in class ch.agent.crnickl.jdbc.JDBCSession
Return the JDBC session.
getLast(Series<T>, TimeIndex) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
getLast(Series<Double>, TimeIndex) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
getName() - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema.RawSchema
Return the name.
getParent() - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema.RawSchema
Return the parent.
getProperties(String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getProperties(Database, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForProperty
Find a collection of properties with names matching a simple pattern.
getProperty(Surrogate) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getProperty(String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getProperty(Database, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForProperty
Find a property by its name in a database.
getProperty(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForProperty
Find a property corresponding to a surrogate.
getRange(Series<T>) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
getRange(Series<Double>) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
getRawSchema(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema
Find a raw schema corresponding to a surrogate.
getReadMethodsForChronicleAndSeries() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing read methods for chronicles and series.
getReadMethodsForProperty() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing read methods for properties.
getReadMethodsForSchema() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing read methods for schemas.
getReadMethodsForValueType() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing read methods for value types.
getSchema(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema
Find a schema corresponding to a surrogate.
getSchemaSurrogateList(Database, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForSchema
Find a collection of schema surrogates with labels matching a pattern.
getSchemaSurrogates(String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getSeries(Chronicle, String[], int[]) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getSeries(Surrogate) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getSeries(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Find a series corresponding to a surrogate.
getSeries(Chronicle, String[], int[]) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
Return array of series in the positions corresponding to the requested numbers.
getUpdatableSchema(Surrogate) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getURL() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Return the URL of the session.
getUser() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Return the user id of the session.
getValues(Series<T>, Range, TimeAddressable<T>) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
getValues(Series<Double>, Range, TimeAddressable<Double>) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
getValueType(String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getValueType(Surrogate) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getValueType(Database, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForValueType
Find a value type with a given name.
getValueType(Surrogate) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForValueType
Find a value type corresponding to a surrogate.
getValueTypes(String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
getValueTypes(Database, String) - Method in class ch.agent.crnickl.jdbc.ReadMethodsForValueType
Find a collection of value types with names matching a pattern.
getWriteMethodsForChroniclesAndSeries() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing write methods for chronicles and series.
getWriteMethodsForProperty() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing write methods for properties.
getWriteMethodsForSchema() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing write methods for schemas.
getWriteMethodsForValueType() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
Return the object providing write methods for value types.

I

insertOrUpdateValue(UpdatableSeries<Double>, Observation<Double>, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
An IllegalArgumentException is thrown if the observation's value is null or a NaN.

J

J00101 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00102 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00105 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00106 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00107 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00108 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00110 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J00111 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J01101 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10105 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10106 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10109 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10110 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10114 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10115 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10116 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10119 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10120 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10121 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10122 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10126 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10127 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J10128 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20105 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20106 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20109 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20114 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20115 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20116 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20119 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J20120 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30105 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30109 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30114 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30115 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30116 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30117 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30122 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30123 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30124 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30125 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30126 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30127 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30128 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30129 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J30130 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40105 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40106 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40109 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40110 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40111 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40112 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40113 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40114 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40119 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40120 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40121 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40122 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J40123 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50104 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50109 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50110 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50111 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50112 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50113 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50119 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50120 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50121 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50122 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50123 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
J50124 - Static variable in class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
JDBC_DB - Static variable in class ch.agent.crnickl.jdbc.JDBCSession
 
JDBC_DRIVER - Static variable in class ch.agent.crnickl.jdbc.JDBCSession
 
JDBC_PASSWORD - Static variable in class ch.agent.crnickl.jdbc.JDBCSession
 
JDBC_URL - Static variable in class ch.agent.crnickl.jdbc.JDBCSession
 
JDBC_USER - Static variable in class ch.agent.crnickl.jdbc.JDBCSession
 
JDBCDatabase - Class in ch.agent.crnickl.jdbc
A JDBC implementation of DatabaseBackendImpl.
JDBCDatabase(String) - Constructor for class ch.agent.crnickl.jdbc.JDBCDatabase
Construct a DatabaseBackend.
JDBCDatabaseMethods - Class in ch.agent.crnickl.jdbc
A JDBCDatabaseMethods object provides support for prepared statements.
JDBCDatabaseMethods() - Constructor for class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
 
JDBCSession - Class in ch.agent.crnickl.jdbc
JDBCSession is a singleton keeping track of the JDBC connection.
JDBCSession(DatabaseConfiguration) - Constructor for class ch.agent.crnickl.jdbc.JDBCSession
Construct a JDBC session.

O

open(String, Database, PreparedStatement) - Method in class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
Return a valid prepared statement for the SQL code specified.
open(String, DBObject, PreparedStatement) - Method in class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
Return a valid prepared statement for the SQL code specified.
open(String, Surrogate, PreparedStatement) - Method in class ch.agent.crnickl.jdbc.JDBCDatabaseMethods
Return a valid prepared statement for the SQL code specified.

P

PROPERTY - Static variable in interface ch.agent.crnickl.jdbc.DB
 

R

ReadMethodsForChroniclesAndSeries - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing read access to chronicles and series.
ReadMethodsForChroniclesAndSeries() - Constructor for class ch.agent.crnickl.jdbc.ReadMethodsForChroniclesAndSeries
 
ReadMethodsForProperty - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing read access to properties.
ReadMethodsForProperty() - Constructor for class ch.agent.crnickl.jdbc.ReadMethodsForProperty
 
ReadMethodsForSchema - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing read access to schemas.
ReadMethodsForSchema() - Constructor for class ch.agent.crnickl.jdbc.ReadMethodsForSchema
 
ReadMethodsForSchema.RawSchema - Class in ch.agent.crnickl.jdbc
A raw schema object keeps track of the id, the name and the parent of a schema.
ReadMethodsForSchema.RawSchema(String, int, int) - Constructor for class ch.agent.crnickl.jdbc.ReadMethodsForSchema.RawSchema
Construct a raw schema.
ReadMethodsForValueType - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing read access to value types.
ReadMethodsForValueType() - Constructor for class ch.agent.crnickl.jdbc.ReadMethodsForValueType
 
rollback() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
rollback() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Rollback the current transaction.
rollbackIfAlive() - Static method in class ch.agent.crnickl.jdbc.JDBCSession
Perform a rollback if there is a session, else do nothing.

S

SCHEMA_ITEM - Static variable in interface ch.agent.crnickl.jdbc.DB
 
SCHEMA_NAME - Static variable in interface ch.agent.crnickl.jdbc.DB
 
SERIES - Static variable in interface ch.agent.crnickl.jdbc.DB
 
setValueType(ValueType<T>) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
Set the value type.

T

T2DBJException - Exception in ch.agent.crnickl.jdbc
A T2DBJException is thrown by JDBC methods of CrNiCKL when they need to throw a checked exception.
T2DBJException(KeyedMessage) - Constructor for exception ch.agent.crnickl.jdbc.T2DBJException
Construct an exception with a keyed message.
T2DBJException(KeyedMessage, Throwable) - Constructor for exception ch.agent.crnickl.jdbc.T2DBJException
Construct an exception with a keyed message and the causing exception.
T2DBJMsg - Class in ch.agent.crnickl.jdbc
T2DBJMsg provides keyed messages to the package.
T2DBJMsg(String, Object...) - Constructor for class ch.agent.crnickl.jdbc.T2DBJMsg
Construct a keyed message.
T2DBJMsg.J - Class in ch.agent.crnickl.jdbc
Message symbols.
T2DBJMsg.J() - Constructor for class ch.agent.crnickl.jdbc.T2DBJMsg.J
 
toString() - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
toString() - Method in class ch.agent.crnickl.jdbc.JDBCSession
Return a string displaying the session with the URL and the user id.

U

update(UpdatableChronicle) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableChronicle, AttributeDefinition<?>, String, String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableProperty<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableValueType<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableValueType<T>, Map<T, String>, Map<T, String>, Set<T>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableSchema, UpdatableSchema, String) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
update(UpdatableSchema, int, String, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.JDBCDatabase
 
updateAttribute(UpdatableChronicle, AttributeDefinition<?>, String, String) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Update a chronicle attribute.
updateChronicle(UpdatableChronicle, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
Update a chronicle.
updateProperty(Property<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForProperty
Update the name of the value type.
updateSchema(UpdatableSchema, UpdatableSchema, String) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Update the basic schema setup in the database.
updateSchemaComponent(UpdatableSchema, int, String, AttributeDefinition<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForSchema
Update an attribute definition in the database.
updateSeries(UpdatableSeries<T>, Range, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
updateSeries(UpdatableSeries<Double>, Range, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
updateValues(UpdatableSeries<T>, TimeAddressable<T>, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForAny
 
updateValues(UpdatableSeries<Double>, TimeAddressable<Double>, ChronicleUpdatePolicy) - Method in class ch.agent.crnickl.jdbc.AccessMethodsForNumber
 
updateValueType(ValueType<?>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForValueType
Update a value type in the database.
updateValueType(ValueType<T>, Map<T, String>, Map<T, String>, Set<T>) - Method in class ch.agent.crnickl.jdbc.WriteMethodsForValueType
Add new values to the value type or update the description of existing values.

V

VALUE_DOUBLE - Static variable in interface ch.agent.crnickl.jdbc.DB
 
VALUE_TYPE - Static variable in interface ch.agent.crnickl.jdbc.DB
 
VALUE_TYPE_VALUE - Static variable in interface ch.agent.crnickl.jdbc.DB
 

W

WriteMethodsForChroniclesAndSeries - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing write access to chronicles and series.
WriteMethodsForChroniclesAndSeries() - Constructor for class ch.agent.crnickl.jdbc.WriteMethodsForChroniclesAndSeries
 
WriteMethodsForProperty - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing write access to properties.
WriteMethodsForProperty() - Constructor for class ch.agent.crnickl.jdbc.WriteMethodsForProperty
 
WriteMethodsForSchema - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing write access to schemas.
WriteMethodsForSchema() - Constructor for class ch.agent.crnickl.jdbc.WriteMethodsForSchema
 
WriteMethodsForValueType - Class in ch.agent.crnickl.jdbc
A stateless object with methods providing write access to value types.
WriteMethodsForValueType() - Constructor for class ch.agent.crnickl.jdbc.WriteMethodsForValueType
 

A C D E F G I J O P R S T U V W

Copyright © 2012. All Rights Reserved.