A B C D E F G I L M N O P Q R S T U V W

A

absolute(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#absolute(int)
addBatch() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#addBatch().
addBatch(String) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#addBatch(String).
addCondition(Condition) - Method in class org.acmsl.queryj.Query
Adds a new condition.
addField(Field) - Method in class org.acmsl.queryj.SelectQuery
Adds a new field.
addGroupingField(Field) - Method in class org.acmsl.queryj.SelectQuery
Adds a new grouping field.
addOrderingField(Field) - Method in class org.acmsl.queryj.SelectQuery
Adds a new ordering field.
addTable(Table) - Method in class org.acmsl.queryj.Query
Adds a new table.
addVariableCondition(VariableCondition) - Method in class org.acmsl.queryj.Query
Adds a new variable condition.
afterLast() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#afterLast()
ALIAS - Static variable in class org.acmsl.queryj.rdb.oracle.CardtypeTable
The table alias.
ALL - Static variable in class org.acmsl.queryj.rdb.oracle.CardtypeTable
All fields.
and(Condition) - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Requests AND evaluation with given condition.
and(Condition) - Method in class org.acmsl.queryj.Condition
Requests AND evaluation with given condition.
AtomicCondition - class org.acmsl.queryj.AtomicCondition.
Represents indivisible conditions in statements.
AtomicCondition(Field, ConditionOperator, Field) - Constructor for class org.acmsl.queryj.AtomicCondition
Creates a condition using given information.
AtomicCondition(Field, ConditionOperator, int) - Constructor for class org.acmsl.queryj.AtomicCondition
Creates a condition using given information.
AtomicCondition(Field, ConditionOperator, String) - Constructor for class org.acmsl.queryj.AtomicCondition
Creates a condition using given information.

B

beforeFirst() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#beforeFirst()
beginTransaction() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Gets notified whenever the transaction starts.
beginTransaction() - Method in interface org.acmsl.queryj.dao.TransactionToken
Gets notified whenever the transaction starts.
buildCardtypes(QueryResultSet) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Fills up a Cardtypes with the information provided by given result set.

C

cancel() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#cancel().
cancelRowUpdates() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#cancelRowUpdates()
CARDTYPES - Static variable in class org.acmsl.queryj.rdb.oracle.OracleTableRepository
The Cardtypes table.
CardtypesFactory - class org.acmsl.queryj.rdb.oracle.CardtypesFactory.
Has the responsiblity of creating in-memory copies of Cardtypes table rows.
CardtypesFactory() - Constructor for class org.acmsl.queryj.rdb.oracle.CardtypesFactory
Protected constructor to avoid accidental instantiation.
CardtypesValueObject - class org.acmsl.queryj.rdb.oracle.CardtypesValueObject.
Represents an in-memory copy of a Cardtypes table row.
CardtypesValueObject(long, String) - Constructor for class org.acmsl.queryj.rdb.oracle.CardtypesValueObject
Builds a CardtypesValueObject using given data.
CardtypeTable - class org.acmsl.queryj.rdb.oracle.CardtypeTable.
Represents the Cardtype table in the persistence domain.
CardtypeTable() - Constructor for class org.acmsl.queryj.rdb.oracle.CardtypeTable
Protected constructor to avoid accidental instantiation.
clearBatch() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#clearBatch().
clearParameters() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#clearParameters().
clearWarnings() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#clearWarnings().
clearWarnings() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#clearWarnings()
close() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#close().
close() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#close()
closeConnection(Connection, TransactionToken) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to close the database operation.
closeConnection(Connection, TransactionToken, boolean) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to close the database operation.
commit(Connection, TransactionToken) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to commit the database operation.
commit(Connection, TransactionToken, boolean, boolean) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to commit the database operation.
concatenate(Collection, String) - Method in class org.acmsl.queryj.QueryUtils
Concatenates all elements of given collection using a separator.
Condition - class org.acmsl.queryj.Condition.
Represents conditions.
Condition() - Constructor for class org.acmsl.queryj.Condition
Creates a condition.
ConditionFactory - class org.acmsl.queryj.ConditionFactory.
Has the responsiblity of knowing how to create conditions.
ConditionFactory._AtomicConditionWrapper - class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper.
Envelopes a condition surrounding it with appropiate prefix and suffix.
ConditionFactory._AtomicConditionWrapper(AtomicCondition, String, String) - Constructor for class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Creates a condition wrapper with given information.
ConditionFactory._ConditionWrapper - class org.acmsl.queryj.ConditionFactory._ConditionWrapper.
Envelopes a condition surrounding it with appropiate prefix and suffix.
ConditionFactory._ConditionWrapper(Condition, String, String) - Constructor for class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Creates a condition wrapper with given information.
ConditionFactory._VariableConditionWrapper - class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper.
Envelopes a variable condition surrounding it with appropiate prefix and suffix.
ConditionFactory._VariableConditionWrapper(VariableCondition, String, String) - Constructor for class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Creates a condition wrapper with given information.
ConditionFactory() - Constructor for class org.acmsl.queryj.ConditionFactory
Protected constructor to avoid accidental instantiation.
ConditionOperator - class org.acmsl.queryj.ConditionOperator.
Represents operators used inside conditions.
ConditionOperator(String) - Constructor for class org.acmsl.queryj.ConditionOperator
Creates a operator using given information.
ConditionOperatorRepository - class org.acmsl.queryj.ConditionOperatorRepository.
Contains references to declared operators.
ConditionOperatorRepository() - Constructor for class org.acmsl.queryj.ConditionOperatorRepository
Protected constructor to avoid accidental instantiation.
createCardtypes(long, String) - Method in class org.acmsl.queryj.rdb.oracle.CardtypesFactory
Creates a Cardtypes value object from given information.
createCondition(Field, ConditionOperator, Field) - Method in class org.acmsl.queryj.ConditionFactory
Creates a condition
createCondition(Field, ConditionOperator, int) - Method in class org.acmsl.queryj.ConditionFactory
Creates a condition
createSelectQuery() - Method in class org.acmsl.queryj.QueryFactory
Creates a select query.
createTransactionToken() - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Creates a transaction token.
createTransactionToken(DataSource) - Static method in class org.acmsl.queryj.dao.TransactionTokenFactory
Creates a SingleConnectionTransactionToken using given connection.
createVariableCondition(Field, ConditionOperator) - Method in class org.acmsl.queryj.ConditionFactory
Creates a variable condition.

D

DataSourceTransactionToken - class org.acmsl.queryj.dao.DataSourceTransactionToken.
JDBC-related Transaction Token using DataSource class.
DataSourceTransactionToken(DataSource) - Constructor for class org.acmsl.queryj.dao.DataSourceTransactionToken
Creates a DataSourceTransactionToken using given connection.
deleteRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#deleteRow()

E

endTransaction() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Takes into account that the transaction is over.
endTransaction() - Method in interface org.acmsl.queryj.dao.TransactionToken
Takes into account that the transaction is over.
equals() - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for equality.
equals(int) - Method in class org.acmsl.queryj.IntField
Retrieves the variable condition to be able to filter for equality.
equals(Object) - Method in class org.acmsl.queryj.ConditionOperator
Checks if given object is logically equal to this one.
equals(Object) - Method in class org.acmsl.queryj.NestedConditionOperator
Checks if given object is logically equal to this one.
equals(Object) - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Checks if this object is logically equal to given one.
execute() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#execute().
execute(String) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#execute(String).
execute(String, Field[]) - Method in class org.acmsl.queryj.SelectQuery
Executes given update operation using field references.
execute(String, int) - Method in class org.acmsl.queryj.Query
See Statement#execute(String,int)
execute(String, int[]) - Method in class org.acmsl.queryj.Query
See Statement#execute(String,int[])
execute(String, String[]) - Method in class org.acmsl.queryj.Query
See Statement#execute(String,String[])
executeBatch() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#executeBatch().
executeQuery() - Method in class org.acmsl.queryj.SelectQuery
See java.sql.PreparedStatement#executeQuery().
executeQuery() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#executeQuery().
executeQuery(String) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#executeQuery().
executeUpdate() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#executeUpdate().
executeUpdate(String) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#executeUpdate().
executeUpdate(String, Field[]) - Method in class org.acmsl.queryj.SelectQuery
Executes given update operation using field references.
executeUpdate(String, int) - Method in class org.acmsl.queryj.Query
See Statement#executeUpdate(String,int)
executeUpdate(String, int[]) - Method in class org.acmsl.queryj.Query
See Statement#executeUpdate(String,int[])
executeUpdate(String, String[]) - Method in class org.acmsl.queryj.Query
See Statement#executeUpdate(String,String[])

F

Field - class org.acmsl.queryj.Field.
Represents SQL fields.
Field(String, Table) - Constructor for class org.acmsl.queryj.Field
Creates a field using given information.
findColumn(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves the column index associated to given field.
findColumn(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#findColumn(String)
first() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#first()
from(Table) - Method in class org.acmsl.queryj.SelectQuery
Indicates which table participates in the query.

G

getAll() - Method in class org.acmsl.queryj.Table
Retrieves all fields.
getAll() - Method in class org.acmsl.queryj.rdb.oracle.CardtypeTable
Retrieves all fields.
getArray(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an array value using the field reference.
getArray(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getArray(int)
getArray(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getArray(String)
getAsciiStream(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an ASCII stream using the field reference.
getAsciiStream(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getAsciiStream(int)
getAsciiStream(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getAsciiStream(String)
getBelongsTo(SelectQuery) - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the belongs-to operator.
getBigDecimal(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a BigDecimal value using the field reference.
getBigDecimal(Field, int) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a BigDecimal value using the field reference.
getBigDecimal(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBigDecimal(int)
getBigDecimal(int, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBigDecimal(int,int)
getBigDecimal(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBigDecimal(String)
getBigDecimal(String, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBigDecimal(String,int)
getBinaryStream(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a binary stream using the field reference.
getBinaryStream(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBinaryStream(int)
getBinaryStream(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBinaryStream(String)
getBlob(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a blob using the field reference.
getBlob(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBlob(int)
getBlob(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBlob(String)
getBoolean(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a boolean value using the field reference.
getBoolean(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBoolean(int)
getBoolean(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getBoolean(String)
getByte(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a byte value using the field reference.
getByte(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getByte(int)
getByte(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getByte(String)
getBytes(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a byte array value using the field reference.
getBytes(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet.getBytes(int)
getBytes(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet.getBytes(String)
getCharacterStream(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a character stream using the field reference.
getCharacterStream(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getCharacterStream(int)
getCharacterStream(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getCharacterStream(String)
getClob(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a clob value using the field reference.
getClob(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getClob(int)
getClob(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getClob(String)
getConcurrency() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getConcurrency()
getCondition() - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Retrieves the wrapped condition.
getCondition() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the wrapped condition.
getCondition() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the wrapped condition.
getConditions() - Method in class org.acmsl.queryj.Query
Retrieves the condition collection.
getConnection() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getConnection().
getConnection() - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to retrieve a connection from wherever it can.
getConnection(TransactionToken) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to retrieve a connection from wherever it can.
getCursorName() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getCursorName()
getDataSource() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Retrieves the data source.
getDataSource() - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Retrieves the data source.
getDate(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a Date value using the field reference.
getDate(Field, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a Date value using the field reference.
getDate(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDate(int)
getDate(int, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDate(int,Calendar)
getDate(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDate(String)
getDate(String, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDate(String,Calendar)
getDouble(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a double value using the field reference.
getDouble(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDouble(int)
getDouble(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getDouble(String)
getEquals() - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the equality operator.
getFetchDirection() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getFetchDirection().
getFetchDirection() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getFetchDirection()
getFetchSize() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getFetchSize().
getFetchSize() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getFetchSize()
getFieldIndex(Field) - Method in class org.acmsl.queryj.SelectQuery
Retrieves the position of given field on the query.
getFields() - Method in class org.acmsl.queryj.SelectQuery
Retrieves the field collection.
getFloat(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a float value using the field reference.
getFloat(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getFloat(int)
getFloat(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getFloat(String)
getGeneratedKeys() - Method in class org.acmsl.queryj.SelectQuery
See Statement#getGeneratedKeys()
getGeneratedKeys() - Method in class org.acmsl.queryj.Query
See Statement#getGeneratedKeys()
getGreaterThan() - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the greater-than operator.
getGroupingFieldIndex(Field) - Method in class org.acmsl.queryj.SelectQuery
Retrieves the position of given grouping field on the query.
getGroupingFields() - Method in class org.acmsl.queryj.SelectQuery
Retrieves the grouping field collection.
getIndex(List, Object) - Method in class org.acmsl.queryj.Query
Retrieves the position of given item on the query.
getInnerCondition() - Method in class org.acmsl.queryj.Condition
Retrieves the inner condition.
getInstance() - Static method in class org.acmsl.queryj.ConditionFactory
Retrieves a ConditionFactory instance.
getInstance() - Static method in class org.acmsl.queryj.QueryUtils
Retrieves a QueryUtils instance.
getInstance() - Static method in class org.acmsl.queryj.QueryFactory
Retrieves a QueryFactory instance.
getInstance() - Static method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves a ConditionOperatorRepository instance.
getInstance() - Static method in class org.acmsl.queryj.dao.TransactionTokenFactory
Retrieves a TransactionTokenFactory instance.
getInstance() - Static method in class org.acmsl.queryj.rdb.oracle.CardtypeTable
Retrieves a CardtypeTable instance.
getInstance() - Static method in class org.acmsl.queryj.rdb.oracle.CardtypesFactory
Retrieves a CardtypesFactory instance.
getInt(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an integer value using the field reference.
getInt(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getInt(int)
getInt(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getInt(String)
getIsNull() - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the null operator.
getLeftSideField() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the left-side field.
getLeftSideField() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the left-side field.
getLeftSideField() - Method in class org.acmsl.queryj.AtomicCondition
Retrieves the left-side field.
getLessThan() - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the less-than operator.
getLong(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a boolean value using the field reference.
getLong(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getLong(int)
getLong(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getLong(String)
getMaxFieldSize() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getMaxFieldSize().
getMaxRows() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getMaxRows().
getMetaData() - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#getMetaData().
getMetaData() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getMetaData()
getMoreResults() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getMoreResults().
getMoreResults(int) - Method in class org.acmsl.queryj.Query
See Statement#getMoreResults(int)
getName() - Method in class org.acmsl.queryj.TableAlias
Retrieves the alias name.
getName() - Method in class org.acmsl.queryj.Table
Retrieves the table name.
getName() - Method in class org.acmsl.queryj.Field
Retrieves the field name.
getNotBelongsTo(SelectQuery) - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the not-belongs-to operator.
getNotEquals() - Method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the unequality operator.
getObject(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an object value using the field reference.
getObject(Field, Map) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an object value using the field reference.
getObject(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getObject(int)
getObject(int, Map) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getObject(int,Map)
getObject(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getObject(String)
getObject(String, Map) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getObject(String,Map)
getOperator() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the condition operator.
getOperator() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the condition operator.
getOperator() - Method in class org.acmsl.queryj.AtomicCondition
Retrieves the operator.
getOrderingFieldIndex(Field) - Method in class org.acmsl.queryj.SelectQuery
Retrieves the position of given ordering field on the query.
getOrderingFields() - Method in class org.acmsl.queryj.SelectQuery
Retrieves the ordering field collection.
getParameterMetaData() - Method in class org.acmsl.queryj.Query
See PreparedStatement#getParameterMetaData()
getPrefix() - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Retrieves the prefix.
getPrefix() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the prefix.
getPrefix() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the prefix.
getPreparedStatement() - Method in class org.acmsl.queryj.Query
Retrieves the statement.
getQuery() - Method in class org.acmsl.queryj.QueryResultSet
Retrieves the query.
getQuery() - Method in class org.acmsl.queryj.NestedConditionOperator
Retrieves the operator query.
getQueryTimeout() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getQueryTimeout().
getRef(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a Ref value using the field reference.
getRef(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getRef(int)
getRef(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getRef(String)
getReference() - Static method in class org.acmsl.queryj.ConditionFactory
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.QueryUtils
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.QueryFactory
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.ConditionOperatorRepository
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.dao.TransactionTokenFactory
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.rdb.oracle.CardtypeTable
Retrieves the weak reference.
getReference() - Static method in class org.acmsl.queryj.rdb.oracle.CardtypesFactory
Retrieves the weak reference.
getResultSet() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getResultSet().
getResultSet() - Method in class org.acmsl.queryj.QueryResultSet
Retrieves the result set.
getResultSetConcurrency() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getResultSetConcurrency().
getResultSetHoldability() - Method in class org.acmsl.queryj.Query
See Statement#getResultSetHoldability()
getResultSetType() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getResultSetType().
getRightSideField() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the right-side field.
getRightSideField() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the right-side field.
getRightSideField() - Method in class org.acmsl.queryj.AtomicCondition
Retrieves the right-side field.
getRightSideValue() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the right-side value.
getRightSideValue() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the right-side value.
getRightSideValue() - Method in class org.acmsl.queryj.AtomicCondition
Retrieves the right-side value.
getRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getRow()
getShort(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a short value using the field reference.
getShort(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getShort(int)
getShort(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getShort(String)
getStatement() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getStatement()
getString(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a text value using the field reference.
getString(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getString(int)
getString(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getString(String)
getSuffix() - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Retrieves the suffix.
getSuffix() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Retrieves the suffix.
getSuffix() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Retrieves the suffix.
getSymbol() - Method in class org.acmsl.queryj.ConditionOperator
Retrieves the operator symbol.
getTable() - Method in class org.acmsl.queryj.TableAlias
Retrieves the table.
getTable() - Method in class org.acmsl.queryj.Field
Retrieves the field table.
getTables() - Method in class org.acmsl.queryj.Query
Retrieves the table collection.
getTime(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a Time value using the field reference.
getTime(Field, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a Time value using the field reference.
getTime(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTime(int)
getTime(int, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTime(int,Calendar)
getTime(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTime(String)
getTime(String, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTime(String,Calendar)
getTimestamp(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a timestamp value using the field reference.
getTimestamp(Field, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves a timestamp value using the field reference.
getTimestamp(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTimestamp(int)
getTimestamp(int, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTimestamp(int,Calendar)
getTimestamp(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTimestamp(String)
getTimestamp(String, Calendar) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getTimestamp(String,Calendar)
getType() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getType()
getTypeid() - Method in class org.acmsl.queryj.rdb.oracle.CardtypesValueObject
Retrieves the typeid.
getTypetext() - Method in class org.acmsl.queryj.rdb.oracle.CardtypesValueObject
Retrieves the typetext.
getUnicodeStream(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an Unicode stream using the field reference.
getUnicodeStream(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getUnicodeStream(int)
getUnicodeStream(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getUnicodeStream(String)
getUpdateCount() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getUpdateCount().
getURL(Field) - Method in class org.acmsl.queryj.QueryResultSet
Retrieves an URL using the field reference.
getURL(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getURL(int)
getURL(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getURL(String)
getVariableConditions() - Method in class org.acmsl.queryj.Query
Retrieves the variable condition collection.
getWarnings() - Method in class org.acmsl.queryj.Query
See java.sql.Statement#getWarnings().
getWarnings() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#getWarnings()
greaterThan() - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for lower values.
greaterThan(int) - Method in class org.acmsl.queryj.IntField
Retrieves the variable condition to be able to filter for lower values.
groupBy(Field) - Method in class org.acmsl.queryj.SelectQuery
Indicates a field to be used to group the results.

I

in(SelectQuery) - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for values using belongs-to relationships.
insertRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#insertRow()
IntField - class org.acmsl.queryj.IntField.
Represents integer fields.
IntField(String, Table) - Constructor for class org.acmsl.queryj.IntField
Creates an integer field using given information.
isAfterLast() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#isAfterLast()
isBeforeFirst() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#isBeforeFirst()
isFirst() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#isFirst()
isLast() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#isLast()
isNotYetReleased() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Checks if the transaction has been released.
isNull() - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for null values.
isRollbackPending() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Checks the need for a rollback of the whole transaction.
isRollbackPending() - Method in interface org.acmsl.queryj.dao.TransactionToken
Checks the need for a rollback of the whole transaction.
isTransactionAlive() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Checks if the transaction is alive.
isTransactionAlive() - Method in interface org.acmsl.queryj.dao.TransactionToken
Checks if there's any active transaction.

L

last() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#last()
lessThan() - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for greater values.
lessThan(int) - Method in class org.acmsl.queryj.IntField
Retrieves the variable condition to be able to filter for higher values.
load(long, TransactionToken) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Loads a value object from the persistence layer with given id.

M

m__strName - Variable in class org.acmsl.queryj.Table
The table name.
moveToCurrentRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#moveToCurrentRow()
moveToInsertRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#moveToInsertRow()

N

NAME - Static variable in class org.acmsl.queryj.rdb.oracle.CardtypeTable
The table name.
NestedConditionOperator - class org.acmsl.queryj.NestedConditionOperator.
Represents condition operators involving nested queries SQL statements.
NestedConditionOperator(String, SelectQuery) - Constructor for class org.acmsl.queryj.NestedConditionOperator
Creates a nested operator using given information.
next() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#next()
notEquals() - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for non-equality.
notEquals(int) - Method in class org.acmsl.queryj.IntField
Retrieves the variable condition to be able to filter for non-equality.
notIn(SelectQuery) - Method in class org.acmsl.queryj.Field
Retrieves the variable condition to be able to filter for values using not-belongs-to relationships.

O

or(Condition) - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Requests OR evaluation with given condition.
or(Condition) - Method in class org.acmsl.queryj.Condition
Requests OR evaluation with given condition.
OracleCardtypesDAO - class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO.
DAO abstract class responsible of retrieving Cardtypes structures from a database-specific persistence layer, accessing it using a DataSource.
OracleCardtypesDAO(DataSource) - Constructor for class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Constructs a OracleCardtypesDAO with given data source.
OracleTableRepository - class org.acmsl.queryj.rdb.oracle.OracleTableRepository.
Contains all tables belonging to the Oracle schema that models the persistence domain.
OracleTableRepository() - Constructor for class org.acmsl.queryj.rdb.oracle.OracleTableRepository
 
orderBy(Field) - Method in class org.acmsl.queryj.SelectQuery
Indicates a field to be used to order the results.
org.acmsl.queryj - package org.acmsl.queryj
 
org.acmsl.queryj.dao - package org.acmsl.queryj.dao
 
org.acmsl.queryj.rdb.oracle - package org.acmsl.queryj.rdb.oracle
 

P

prepareStatement(Connection) - Method in class org.acmsl.queryj.Query
Prepares a statement.
previous() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#previous()

Q

Query - class org.acmsl.queryj.Query.
Represents queries to access persistent data.
Query() - Constructor for class org.acmsl.queryj.Query
Constructs a query.
QueryFactory - class org.acmsl.queryj.QueryFactory.
Has the responsiblity of knowing how to create queries.
QueryFactory() - Constructor for class org.acmsl.queryj.QueryFactory
Protected constructor to avoid accidental instantiation.
QueryResultSet - class org.acmsl.queryj.QueryResultSet.
Represents standard SQL queries.
QueryResultSet(SelectQuery, ResultSet) - Constructor for class org.acmsl.queryj.QueryResultSet
Builds a query result set with given references.
QueryUtils - class org.acmsl.queryj.QueryUtils.
Provides some useful methods when working with queries.
QueryUtils() - Constructor for class org.acmsl.queryj.QueryUtils
Protected constructor to avoid accidental instantiation.

R

refreshRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#refreshRow()
relative(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#relative(int)
release() - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Releases the transaction.
release() - Method in interface org.acmsl.queryj.dao.TransactionToken
Releases the transaction.
retrieveMatchingResults() - Method in class org.acmsl.queryj.SelectQuery
Looks for the records that match the filter.
retrieveMatchingResults() - Method in class org.acmsl.queryj.Query
Looks for the records that match the filter.
rollback(Connection, TransactionToken) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to rollback the database operation.
rollback(Connection, TransactionToken, boolean, boolean) - Method in class org.acmsl.queryj.rdb.oracle.OracleCardtypesDAO
Tries to rollback the database operation.
rowDeleted() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#rowDeleted()
rowInserted() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#rowInserted()
rowUpdated() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#rowUpdated()

S

select(Field) - Method in class org.acmsl.queryj.SelectQuery
Selects a field.
SelectQuery - class org.acmsl.queryj.SelectQuery.
Represents standard SQL select queries.
SelectQuery() - Constructor for class org.acmsl.queryj.SelectQuery
Constructs a query.
setArray(int, Array) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setArray(int,Array).
setArray(VariableCondition, Array) - Method in class org.acmsl.queryj.Query
Specifies the value of an Array parameter, associated with a previously specified variable condition.
setAsciiStream(int, InputStream, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setAsciiStream(int,InputStram,int).
setAsciiStream(VariableCondition, InputStream, int) - Method in class org.acmsl.queryj.Query
Specifies the value of a parameter formatted as an ASCII stream, associated with a previously specified variable condition.
setBigDecimal(int, BigDecimal) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setBigDecimal(int,BigDecimal).
setBigDecimal(VariableCondition, BigDecimal) - Method in class org.acmsl.queryj.Query
Specifies the value of a BigDecimal parameter, associated with a previously specified variable condition.
setBinaryStream(int, InputStream, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setBinaryStream(int,InputStream).
setBinaryStream(VariableCondition, InputStream, int) - Method in class org.acmsl.queryj.Query
Specifies the value of a parameter formatted as a binary stream, associated with a previously specified variable condition.
setBlob(int, Blob) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setBlob(int,Blob).
setBlob(VariableCondition, Blob) - Method in class org.acmsl.queryj.Query
Specifies the value of a blob parameter, associated with a previously specified variable condition.
setBoolean(int, boolean) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setBoolean(int,boolean).
setBoolean(VariableCondition, boolean) - Method in class org.acmsl.queryj.Query
Specifies the value of a boolean parameter, associated with a previously specified variable condition.
setByte(int, byte) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setByte(int,byte).
setByte(VariableCondition, byte) - Method in class org.acmsl.queryj.Query
Specifies the value of a byte parameter, associated with a previously specified variable condition.
setBytes(int, byte[]) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setBytes(int,byte[]).
setBytes(VariableCondition, byte[]) - Method in class org.acmsl.queryj.Query
Specifies the value of a byte array parameter, associated with a previously specified variable condition.
setCharacterStream(int, Reader, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setCharacterStream(int,Reader,int).
setCharacterStream(VariableCondition, Reader, int) - Method in class org.acmsl.queryj.Query
Specifies the value of a parameter formatted as a binary stream, associated with a previously specified variable condition.
setClob(int, Clob) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setClob(int,Clob).
setClob(VariableCondition, Clob) - Method in class org.acmsl.queryj.Query
Specifies the value of a clob parameter, associated with a previously specified variable condition.
setCondition(AtomicCondition) - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Specifies the condition to wrap.
setCondition(Condition) - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Specifies the condition to wrap.
setCondition(VariableCondition) - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Specifies the condition to wrap.
setConditions(List) - Method in class org.acmsl.queryj.Query
Specifies new condition collection.
setCursorName(String) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setCursorName(String).
setDataSource(DataSource) - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Specifies the data source.
setDate(int, Date) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setDate(int,Date).
setDate(int, Date, Calendar) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setDate(int,Date,Calendar).
setDate(VariableCondition, Date) - Method in class org.acmsl.queryj.Query
Specifies the value of a date parameter, associated with a previously specified variable condition.
setDate(VariableCondition, Date, Calendar) - Method in class org.acmsl.queryj.Query
Specifies the value of a date parameter, associated with a previously specified variable condition.
setDouble(int, double) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setDouble(int,double).
setDouble(VariableCondition, double) - Method in class org.acmsl.queryj.Query
Specifies the value of a double parameter, associated with a previously specified variable condition.
setEscapeProcessing(boolean) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setEscapeProcessing(boolean).
setFetchDirection(int) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setFetchDirection(int).
setFetchDirection(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#setFetchDirection(int)
setFetchSize(int) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setFetchSize(int).
setFetchSize(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#setFetchSize(int)
setFields(List) - Method in class org.acmsl.queryj.SelectQuery
Specifies new field collection.
setFloat(int, float) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setFloat(int,float).
setFloat(VariableCondition, float) - Method in class org.acmsl.queryj.Query
Specifies the value of a float parameter, associated with a previously specified variable condition.
setGroupingFields(List) - Method in class org.acmsl.queryj.SelectQuery
Specifies new grouping field collection.
setInnerCondition(Condition) - Method in class org.acmsl.queryj.Condition
Specifies a new condition collection.
setInt(int, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setInt(int,int).
setInt(VariableCondition, int) - Method in class org.acmsl.queryj.Query
Specifies the value of an int parameter, associated with a previously specified variable condition.
setLeftSideField(Field) - Method in class org.acmsl.queryj.AtomicCondition
Specifies the left side field.
setLong(int, long) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setLong(int,long).
setLong(VariableCondition, long) - Method in class org.acmsl.queryj.Query
Specifies the value of a long parameter, associated with a previously specified variable condition.
setMaxFieldSize(int) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setMaxFieldSize(int).
setMaxRows(int) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setMaxRows(int).
setName(String) - Method in class org.acmsl.queryj.TableAlias
Specifies the alias name.
setName(String) - Method in class org.acmsl.queryj.Table
Specifies the table name.
setName(String) - Method in class org.acmsl.queryj.Field
Specifies the field name.
setNotYetReleased(boolean) - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Specifies if the transaction has been released.
setNull(int, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setNull(int,int).
setNull(int, int, String) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setNull(int,int,String).
setNull(VariableCondition, int) - Method in class org.acmsl.queryj.Query
Specifies as null the value of a parameter, associated with a previously specified variable condition.
setNull(VariableCondition, int, String) - Method in class org.acmsl.queryj.Query
Specifies as null the value of a parameter, associated with a previously specified variable condition.
setObject(int, Object) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setObject(int,Object).
setObject(int, Object, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setObject(int,Object,int).
setObject(int, Object, int, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setObject(int,Object,int,int).
setObject(VariableCondition, Object) - Method in class org.acmsl.queryj.Query
Specifies the value of an object parameter, associated with a previously specified variable condition.
setObject(VariableCondition, Object, int) - Method in class org.acmsl.queryj.Query
Specifies the value of an object parameter, associated with a previously specified variable condition.
setObject(VariableCondition, Object, int, int) - Method in class org.acmsl.queryj.Query
Specifies the value of an object parameter, associated with a previously specified variable condition.
setOperator(ConditionOperator) - Method in class org.acmsl.queryj.AtomicCondition
Specifies the operator.
setOrderingFields(List) - Method in class org.acmsl.queryj.SelectQuery
Specifies new ordering field collection.
setPrefix(String) - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Specifies the prefix.
setPrefix(String) - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Specifies the prefix.
setPrefix(String) - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Specifies the prefix.
setPreparedStatement(PreparedStatement) - Method in class org.acmsl.queryj.Query
Specifies the statement.
setQuery(SelectQuery) - Method in class org.acmsl.queryj.QueryResultSet
Specifies the query reference.
setQuery(SelectQuery) - Method in class org.acmsl.queryj.NestedConditionOperator
Specifies the operator query.
setQueryTimeout(int) - Method in class org.acmsl.queryj.Query
See java.sql.Statement#setQueryTimeout(int).
setRef(int, Ref) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setRef(int,Ref).
setRef(VariableCondition, Ref) - Method in class org.acmsl.queryj.Query
Specifies the value of a ref parameter, associated with a previously specified variable condition.
setReference(CardtypesFactory) - Static method in class org.acmsl.queryj.rdb.oracle.CardtypesFactory
Specifies a new weak reference.
setReference(CardtypeTable) - Static method in class org.acmsl.queryj.rdb.oracle.CardtypeTable
Specifies a new weak reference.
setReference(ConditionFactory) - Static method in class org.acmsl.queryj.ConditionFactory
Specifies a new weak reference.
setReference(ConditionOperatorRepository) - Static method in class org.acmsl.queryj.ConditionOperatorRepository
Specifies a new weak reference.
setReference(QueryFactory) - Static method in class org.acmsl.queryj.QueryFactory
Specifies a new weak reference.
setReference(QueryUtils) - Static method in class org.acmsl.queryj.QueryUtils
Specifies a new weak reference.
setReference(TransactionTokenFactory) - Static method in class org.acmsl.queryj.dao.TransactionTokenFactory
Specifies a new weak reference.
setResultSet(ResultSet) - Method in class org.acmsl.queryj.QueryResultSet
Specifies the result set reference.
setRightSideField(Field) - Method in class org.acmsl.queryj.AtomicCondition
Specifies the right side field.
setRightSideValue(String) - Method in class org.acmsl.queryj.AtomicCondition
Specifies the right side value.
setRollbackPending(boolean) - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Sets the need for a rollback of the whole transaction.
setRollbackPending(boolean) - Method in interface org.acmsl.queryj.dao.TransactionToken
Sets the need for a rollback of the whole transaction.
setShort(int, short) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setShort(int,short).
setShort(VariableCondition, short) - Method in class org.acmsl.queryj.Query
Specifies the value of a short parameter, associated with a previously specified variable condition.
setString(int, String) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setString(int,String).
setString(VariableCondition, String) - Method in class org.acmsl.queryj.Query
Specifies the value of a String parameter, associated with a previously specified variable condition.
setSuffix(String) - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Specifies the suffix.
setSuffix(String) - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Specifies the suffix.
setSuffix(String) - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Specifies the suffix.
setSymbol(String) - Method in class org.acmsl.queryj.ConditionOperator
Specifies the operator symbol.
setTable(Table) - Method in class org.acmsl.queryj.TableAlias
Specifies the table.
setTable(Table) - Method in class org.acmsl.queryj.Field
Specifies the field table.
setTables(List) - Method in class org.acmsl.queryj.Query
Specifies new table collection.
setTime(int, Time) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setTime(int,java.sql.Time).
setTime(int, Time, Calendar) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setTime(int,Time,Calendar).
setTime(VariableCondition, Time) - Method in class org.acmsl.queryj.Query
Specifies the value of a time parameter, associated with a previously specified variable condition.
setTime(VariableCondition, Time, Calendar) - Method in class org.acmsl.queryj.Query
Specifies the value of a time parameter, associated with a previously specified variable condition.
setTimestamp(int, Timestamp) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setTimestamp(int,Timestamp).
setTimestamp(int, Timestamp, Calendar) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setTimestamp(int,Timestamp,Calendar).
setTimestamp(VariableCondition, Timestamp) - Method in class org.acmsl.queryj.Query
Specifies the value of a timestamp parameter, associated with a previously specified variable condition.
setTimestamp(VariableCondition, Timestamp, Calendar) - Method in class org.acmsl.queryj.Query
Specifies the value of a timestamp parameter, associated with a previously specified variable condition.
setTransactionAlive(boolean) - Method in class org.acmsl.queryj.dao.DataSourceTransactionToken
Checks if the transaction is alive.
setTypeid(long) - Method in class org.acmsl.queryj.rdb.oracle.CardtypesValueObject
Specifies a new typeid.
setTypetext(String) - Method in class org.acmsl.queryj.rdb.oracle.CardtypesValueObject
Specifies a new typetext.
setUnicodeStream(int, InputStream, int) - Method in class org.acmsl.queryj.Query
See java.sql.PreparedStatement#setUnicodeStream(int,InputStream,int).
setUnicodeStream(VariableCondition, InputStream, int) - Method in class org.acmsl.queryj.Query
Specifies the value of a parameter formatted as an Unicode stream, associated with a previously specified variable condition.
setURL(int, URL) - Method in class org.acmsl.queryj.Query
See PreparedStatement#setURL(int,URL)
setVariableConditions(List) - Method in class org.acmsl.queryj.Query
Specifies new variable condition collection.

T

Table - class org.acmsl.queryj.Table.
Represents relational tables.
Table(String) - Constructor for class org.acmsl.queryj.Table
Builds a table using given information.
TableAlias - class org.acmsl.queryj.TableAlias.
Represents SQL fields.
TableAlias(String, Table) - Constructor for class org.acmsl.queryj.TableAlias
Creates a table alias using given information.
toString() - Method in class org.acmsl.queryj.SelectQuery
Outputs a text version of the query, in SQL format.
toString() - Method in class org.acmsl.queryj.ConditionFactory._ConditionWrapper
Outputs a text version of the condition.
toString() - Method in class org.acmsl.queryj.ConditionFactory._AtomicConditionWrapper
Outputs a text version of the condition.
toString() - Method in class org.acmsl.queryj.ConditionFactory._VariableConditionWrapper
Outputs a text version of the condition.
toString() - Method in class org.acmsl.queryj.AtomicCondition
Outputs a text version of the condition.
toString() - Method in class org.acmsl.queryj.ConditionOperator
Retrieves a text version of the object.
toString() - Method in class org.acmsl.queryj.Table
Outputs a text version of the table.
toString() - Method in class org.acmsl.queryj.Condition
Outputs a text version of the condition.
toString() - Method in class org.acmsl.queryj.Field
Outputs a text version of the field.
TransactionToken - interface org.acmsl.queryj.dao.TransactionToken.
Represents a transaction runtime environment.
TransactionTokenFactory - class org.acmsl.queryj.dao.TransactionTokenFactory.
Has the responsibility of creating transaction tokens.
TransactionTokenFactory() - Constructor for class org.acmsl.queryj.dao.TransactionTokenFactory
Protected constructor to avoid accidental instantiation.
TYPEID - Static variable in class org.acmsl.queryj.rdb.oracle.CardtypeTable
The Cardtypes table TYPEID field.
TYPETEXT - Static variable in class org.acmsl.queryj.rdb.oracle.CardtypeTable
The Cardtypes table TYPETEXT field.

U

updateArray(Field, Array) - Method in class org.acmsl.queryj.QueryResultSet
Updates a Array column using the field arrayerence.
updateArray(int, Array) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateArray(int,Array)
updateArray(String, Array) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateArray(String,Array)
updateAsciiStream(Field, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
Updates an ASCII stream column using the field reference.
updateAsciiStream(int, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateAsciiStream(int,InputStream,int)
updateAsciiStream(String, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateAsciiStream(String,InputStream,int)
updateBigDecimal(Field, BigDecimal) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBigDecimal(String,BigDecimal)
updateBigDecimal(int, BigDecimal) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBigDecimal(int,BigDecimal)
updateBigDecimal(String, BigDecimal) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBigDecimal(String,BigDecimal)
updateBinaryStream(Field, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
Updates a binary stream column using the field reference.
updateBinaryStream(int, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBinaryStream(int,InputStream,int)
updateBinaryStream(String, InputStream, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBinaryStream(String,InputStream,int)
updateBlob(Field, Blob) - Method in class org.acmsl.queryj.QueryResultSet
Updates a Blob column using the field bloberence.
updateBlob(int, Blob) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBlob(int,Blob)
updateBlob(String, Blob) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBlob(String,Blob)
updateBoolean(Field, boolean) - Method in class org.acmsl.queryj.QueryResultSet
Updates a boolean column using the field reference.
updateBoolean(int, boolean) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBoolean(int,boolean)
updateBoolean(String, boolean) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBoolean(String,boolean)
updateByte(Field, byte) - Method in class org.acmsl.queryj.QueryResultSet
Updates a byte column using the field reference.
updateByte(int, byte) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateByte(int,byte)
updateByte(String, byte) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateByte(String,byte)
updateBytes(Field, byte[]) - Method in class org.acmsl.queryj.QueryResultSet
Updates a byte array column using the field reference.
updateBytes(int, byte[]) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBytes(int,byte[])
updateBytes(String, byte[]) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateBytes(String,byte[])
updateCharacterStream(Field, Reader, int) - Method in class org.acmsl.queryj.QueryResultSet
Updates a character stream column using the field reference.
updateCharacterStream(int, Reader, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateCharacterStream(int,Reader,int)
updateCharacterStream(String, Reader, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateCharacterStream(String,Reader,int)
updateClob(Field, Clob) - Method in class org.acmsl.queryj.QueryResultSet
Updates a Clob column using the field cloberence.
updateClob(int, Clob) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateClob(int,Clob)
updateClob(String, Clob) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateClob(String,Clob)
updateDate(Field, Date) - Method in class org.acmsl.queryj.QueryResultSet
Updates a date column using the field reference.
updateDate(int, Date) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateDate(int,Date)
updateDate(String, Date) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateDate(String,Date)
updateDouble(Field, double) - Method in class org.acmsl.queryj.QueryResultSet
Updates a double column using the field reference.
updateDouble(int, double) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateDouble(int,double)
updateDouble(String, double) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateDouble(String,double)
updateFloat(Field, float) - Method in class org.acmsl.queryj.QueryResultSet
Updates a float column using the field reference.
updateFloat(int, float) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateFloat(int,float)
updateFloat(String, float) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateFloat(String,float)
updateInt(Field, int) - Method in class org.acmsl.queryj.QueryResultSet
Updates an integer column using the field reference.
updateInt(int, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateInt(int,int)
updateInt(String, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateInt(String,int)
updateLong(Field, long) - Method in class org.acmsl.queryj.QueryResultSet
Updates a long column using the field reference.
updateLong(int, long) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateLong(int,long)
updateLong(String, long) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateLong(String,long)
updateNull(Field) - Method in class org.acmsl.queryj.QueryResultSet
Sets a column to null using the field reference.
updateNull(int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateNull(int)
updateNull(String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateNull(String)
updateObject(Field, Object) - Method in class org.acmsl.queryj.QueryResultSet
Updates an object column using the field reference.
updateObject(Field, Object, int) - Method in class org.acmsl.queryj.QueryResultSet
Updates an object column using the field reference.
updateObject(int, Object) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateObject(int,Object)
updateObject(int, Object, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateObject(int,Object,int)
updateObject(String, Object) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateObject(String,Object)
updateObject(String, Object, int) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateObject(String,Object,int)
updateRef(Field, Ref) - Method in class org.acmsl.queryj.QueryResultSet
Updates a Ref column using the field reference.
updateRef(int, Ref) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateRef(int,Ref)
updateRef(String, Ref) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateRef(String,Ref)
updateRow() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateRow()
updateShort(Field, short) - Method in class org.acmsl.queryj.QueryResultSet
Updates a short column using the field reference.
updateShort(int, short) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateShort(int,short)
updateShort(String, short) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateShort(String,short)
updateString(Field, String) - Method in class org.acmsl.queryj.QueryResultSet
Updates a text column using the field reference.
updateString(int, String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateString(int,String)
updateString(String, String) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateString(String,String)
updateTime(Field, Time) - Method in class org.acmsl.queryj.QueryResultSet
Updates a time column using the field reference.
updateTime(int, Time) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateTime(int,Time)
updateTime(String, Time) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateTime(String,Time)
updateTimestamp(Field, Timestamp) - Method in class org.acmsl.queryj.QueryResultSet
Updates a timestamp column using the field reference.
updateTimestamp(int, Timestamp) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateTimestamp(int,Timestamp)
updateTimestamp(String, Timestamp) - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#updateTimestamp(String,Timestamp)

V

VariableCondition - class org.acmsl.queryj.VariableCondition.
Represents conditions in SQL statements.
VariableCondition(Field, ConditionOperator) - Constructor for class org.acmsl.queryj.VariableCondition
Creates a variable condition using given information.

W

wasNull() - Method in class org.acmsl.queryj.QueryResultSet
See ResultSet#wasNull()
where(Condition) - Method in class org.acmsl.queryj.SelectQuery
Indicates a query condition.
where(VariableCondition) - Method in class org.acmsl.queryj.SelectQuery
Indicates a query variable condition.
wrap(AtomicCondition, String, String) - Method in class org.acmsl.queryj.ConditionFactory
Creates a wrapper condition.
wrap(Condition, String, String) - Method in class org.acmsl.queryj.ConditionFactory
Creates a wrapper condition.
wrap(VariableCondition, String, String) - Method in class org.acmsl.queryj.ConditionFactory
Creates a wrapper condition.

A B C D E F G I L M N O P Q R S T U V W

Copyright © 2003 ACM S.L.. All Rights Reserved.