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

A

AbstractLogger - Class in org.cementj.log
An abstract logger used to decouple ora.cementj (and any application using it) from specific logging implementations.
AbstractLogger() - Constructor for class org.cementj.log.AbstractLogger
 
AbstractResourcePool - Class in org.cementj.pool
Abstract class providing basic resource pool functionality.
AbstractResourcePool(String, Properties) - Constructor for class org.cementj.pool.AbstractResourcePool
 
AbstractResourcePool(String, Properties, int) - Constructor for class org.cementj.pool.AbstractResourcePool
 
AbstractResourcePool(String, Properties, int, long) - Constructor for class org.cementj.pool.AbstractResourcePool
 
acknowledgeMessage(Message) - Static method in class org.cementj.util.JMSUtility
Convenience one-liner to acknowledge a JMS message.
add(double) - Method in class org.cementj.collect.DoubleArrayList
Adds a value to the end of the list.
add(float) - Method in class org.cementj.collect.FloatArrayList
Adds a value to the end of the list.
add(int) - Method in class org.cementj.collect.IntegerArrayList
Adds a value to the end of the list.
add(short) - Method in class org.cementj.collect.ShortArrayList
Adds a value to the end of the list.
ApplicationEnvironment - Class in org.cementj.base
This class provides base functionality for managing configuration properties for applications.
ApplicationEnvironment() - Constructor for class org.cementj.base.ApplicationEnvironment
 
ApplicationException - Exception in org.cementj.base
Provides a generic exception for commercial applications that will retain and provide information about the underlying exception.
Note that java.lang.ThreadDeath should not be "converted" into another exception.
ApplicationException() - Constructor for exception org.cementj.base.ApplicationException
 
ApplicationException(String) - Constructor for exception org.cementj.base.ApplicationException
 
ApplicationException(String, Throwable) - Constructor for exception org.cementj.base.ApplicationException
 
ApplicationRuntimeException - Exception in org.cementj.base
Provides a generic runtime exception for commercial applications that will retain and provide information about the underlying exception.
Note that java.lang.ThreadDeath should not be "converted" into another exception.
ApplicationRuntimeException() - Constructor for exception org.cementj.base.ApplicationRuntimeException
 
ApplicationRuntimeException(String) - Constructor for exception org.cementj.base.ApplicationRuntimeException
 
ApplicationRuntimeException(String, Throwable) - Constructor for exception org.cementj.base.ApplicationRuntimeException
 
applyLocalizedPattern(String) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
applyPattern(String) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 

B

begin() - Method in class org.cementj.base.trans.J2EETransactionContext
 
begin() - Method in interface org.cementj.base.trans.TransactionContext
Demarks the beginning of a transaction.
BusinessLogicObject - Class in org.cementj.base
Generic functionality for business logic objects.
BusinessLogicObject() - Constructor for class org.cementj.base.BusinessLogicObject
 
BusinessLogicObject(TransactionContext) - Constructor for class org.cementj.base.BusinessLogicObject
 

C

clone() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
close(PreparedStatement) - Static method in class org.cementj.util.DatabaseUtility
Closes a prepared statement logging a warning if a SQLException is encountered.
close(Statement) - Static method in class org.cementj.util.DatabaseUtility
Closes a statement logging a warning if a SQLException is encountered.
close(CallableStatement) - Static method in class org.cementj.util.DatabaseUtility
Closes a callable statement logging a warning if a SQLException is encountered.
close(ResultSet) - Static method in class org.cementj.util.DatabaseUtility
Closes a result set logging a warning if a SQLException is encountered.
close(Connection) - Static method in class org.cementj.util.DatabaseUtility
Closes a database Connection logging a warning if a SQLException is encountered.
close(Object) - Static method in class org.cementj.util.DatabaseUtility
Closes a JDBC-related object logging a warning if a SQLException is encountered.
close(Object, Object) - Static method in class org.cementj.util.DatabaseUtility
Closes JDBC-related objects in the order provided logging a warning if a SQLException is encountered.
close(Object, Object, Object) - Static method in class org.cementj.util.DatabaseUtility
Closes JDBC-related objects in the order provided logging a warning if a SQLException is encountered.
close(Object, Object, Object, Object) - Static method in class org.cementj.util.DatabaseUtility
Closes JDBC-related objects in the order provided logging a warning if a SQLException is encountered.
close(Object, Object, Object, Object, Object) - Static method in class org.cementj.util.DatabaseUtility
Closes JDBC-related objects in the order provided logging a warning if a SQLException is encountered.
closeAll() - Method in interface org.cementj.base.trans.TransactionContext
Closes all associated database connections.
closeAll() - Method in class org.cementj.pool.AbstractResourcePool
Closes all resources in the pool.
commitAll() - Method in class org.cementj.base.trans.J2EETransactionContext
 
commitAll() - Method in interface org.cementj.base.trans.TransactionContext
Commits your JTA transaction (or all JDBC transactions) in progress.
CommonCharacter - Class in org.cementj.common
A library of commonly used special characters.
ConsoleLogger - Class in org.cementj.log
A Console implementation of Logger (provided as default).
ConsoleLogger() - Constructor for class org.cementj.log.ConsoleLogger
 
ConsoleLogger(PrintStream) - Constructor for class org.cementj.log.ConsoleLogger
 
ConsoleLogger(PrintStream, PrintStream) - Constructor for class org.cementj.log.ConsoleLogger
 
convertTimestampToUtilDate(Timestamp) - Static method in class org.cementj.util.DatabaseUtility
Converts a java.sql.Timestamp to a java.util.Date.
convertUtilDateToTimestamp(Date) - Static method in class org.cementj.util.DatabaseUtility
Converts a java.util.Date to a java.sql.Timestamp.
createDirectory(String) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to create a directory if the file doesn't exist.
createResource(Properties) - Method in class org.cementj.pool.AbstractResourcePool
 
createResource(Properties) - Method in class org.cementj.pool.DatabaseConnectionPool
Creates a new PooledConnection for the pool.
createResource(Properties) - Method in interface org.cementj.pool.ResourcePool
Defines how a resource is created.

D

DatabaseConnectionPool - Class in org.cementj.pool
This is an implementation of a ResourcePool for JDBC database connections.
DatabaseConnectionPool(String, Properties) - Constructor for class org.cementj.pool.DatabaseConnectionPool
 
DatabaseConnectionPool(String, Properties, int) - Constructor for class org.cementj.pool.DatabaseConnectionPool
 
DatabaseConnectionPool(String, Properties, int, long) - Constructor for class org.cementj.pool.DatabaseConnectionPool
 
DatabaseUtility - Class in org.cementj.database
A collection of database oriented utilities.
DatabaseUtility() - Constructor for class org.cementj.database.DatabaseUtility
 
DatabaseUtility - Class in org.cementj.util
A collection of database oriented utilities.
DatabaseUtility() - Constructor for class org.cementj.util.DatabaseUtility
Constructor
DataNotFoundException - Exception in org.cementj.base
This exception is used mainly within Data Access Objects (DAOs) where data for a query or update isn't found.
DataNotFoundException() - Constructor for exception org.cementj.base.DataNotFoundException
 
DataNotFoundException(String) - Constructor for exception org.cementj.base.DataNotFoundException
 
DataNotFoundException(String, Throwable) - Constructor for exception org.cementj.base.DataNotFoundException
 
DATE_TYPE - Static variable in class org.cementj.database.SQLTimer
 
DbDataAccessObject - Class in org.cementj.base
Generic functionality for data access objects for relational databases.
DbDataAccessObject() - Constructor for class org.cementj.base.DbDataAccessObject
 
DbDataAccessObject(Connection) - Constructor for class org.cementj.base.DbDataAccessObject
 
DbExporter - Class in org.cementj.database
Class to export and import data from a relational database using any JDBC driver.
DbExporter() - Constructor for class org.cementj.database.DbExporter
 
DEBUG - Static variable in interface org.cementj.log.Logger
 
DEFAULT_CONFIG_FILE_NAME - Static variable in class org.cementj.base.ApplicationEnvironment
 
DEFAULT_DELIMITER - Static variable in class org.cementj.database.DbExporter
 
DEFAULT_MAX_XML_SIZE - Static variable in class org.cementj.util.JAXBUtility
 
DEFAULT_POOL_SIZE - Static variable in class org.cementj.pool.AbstractResourcePool
Default number of resources allocated to pool
DEFAULT_SLEEP_TIME - Static variable in class org.cementj.pool.AbstractResourcePool
Default sleep time in milliseconds
DEFAULT_UPDATE_TIME_INTERVAL - Static variable in class org.cementj.base.ApplicationEnvironment
The default update time interval for application properties is 10 minutes.
DefaultMessageDrivenBean - Class in org.cementj.base
Default implementation for message driven bean.
DefaultMessageDrivenBean() - Constructor for class org.cementj.base.DefaultMessageDrivenBean
 
DefaultSessionBean - Class in org.cementj.base
Default implementation for session bean.
DefaultSessionBean() - Constructor for class org.cementj.base.DefaultSessionBean
 
Describable - Interface in org.cementj.common
Specification for making objects capable of providing description and state information.
DescribableAsXML - Interface in org.cementj.common
Specification for making objects ca[able of providing a description of themselves in valid XML.
describe() - Method in class org.cementj.base.ValueObject
 
describe() - Method in interface org.cementj.common.Describable
Provides a textual version of description and state.
describeAsXMLDocument() - Method in class org.cementj.base.ValueObject
 
describeAsXMLDocument() - Method in interface org.cementj.common.DescribableAsXML
Provides XML Document Text for a given instance.
describeAsXMLElement() - Method in class org.cementj.base.ValueObject
 
describeAsXMLElement(String) - Method in class org.cementj.base.ValueObject
 
describeAsXMLElement() - Method in interface org.cementj.common.DescribableAsXML
Provides XML Element Text for a given instance.
describeAsXMLElement(String) - Method in interface org.cementj.common.DescribableAsXML
Provides XML Element Text for a given instance.
DoubleArrayList - Class in org.cementj.collect
Dynamic list for double primitives.
DoubleArrayList() - Constructor for class org.cementj.collect.DoubleArrayList
 
DoubleArrayList(int) - Constructor for class org.cementj.collect.DoubleArrayList
 
DoubleArrayList(int, int) - Constructor for class org.cementj.collect.DoubleArrayList
 

E

ejbActivate() - Method in class org.cementj.base.DefaultSessionBean
Hollow implementation to satisfy SessionBean interface.
ejbPassivate() - Method in class org.cementj.base.DefaultSessionBean
Hollow implementation to satisfy SessionBean interface.
ejbRemove() - Method in class org.cementj.base.DefaultMessageDrivenBean
Hollow implementation to satisfy MessageDrivenBean interface.
ejbRemove() - Method in class org.cementj.base.DefaultSessionBean
Hollow implementation to satisfy SessionBean interface.
empty() - Method in class org.cementj.collect.Queue
Tests if Queue is empty.
encodeAsXML() - Method in class org.cementj.base.ValueObject
 
equals(Object) - Method in class org.cementj.base.ValueObject
 
equals(Object) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
ERROR - Static variable in interface org.cementj.log.Logger
 
exceptForNulls(Object, String) - Static method in class org.cementj.util.ExceptionUtility
Throws an IllegalArgumentException for null objects.
exceptForNullsAndBlanks(Object, String) - Static method in class org.cementj.util.ExceptionUtility
Throws an IllegalArgumentException for null and blank Strings.
exceptForNullsAndBlanks(String, String) - Static method in class org.cementj.util.ExceptionUtility
Throws an IllegalArgumentException for null and blank Strings.
ExceptionUtility - Class in org.cementj.util
A collection of exception oriented utilities.
ExceptionUtility() - Constructor for class org.cementj.util.ExceptionUtility
 
executeQuery(String) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object, Object, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String, Object[]) - Method in class org.cementj.base.SQLStatementExecutor
Executes a query and returns the results as an object array.
executeQuery(String) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, Object, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQuery(String, List) - Method in class org.cementj.database.SQLAssistant
Executes a query and returns results.
executeQueryReturningStrings(String, Object[]) - Method in class org.cementj.base.SQLStatementExecutor
 
executeUpdate(String) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object, Object, Object, Object, Object) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String, Object[]) - Method in class org.cementj.base.SQLStatementExecutor
Executes a SQL statement returning the number of rows affected.
executeUpdate(String) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, Object, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
executeUpdate(String, List) - Method in class org.cementj.database.SQLAssistant
Executes a SQL statement making host variable substitutions where appropriate.
exportFile(String) - Method in class org.cementj.database.DbExporter
Exports a file to delimited text.

F

FATAL - Static variable in interface org.cementj.log.Logger
 
FILE_SEPARATOR - Static variable in class org.cementj.common.CommonCharacter
Convenience reference for the "file.separator" property from System.getProperties().
FILE_SEPARATOR - Static variable in class org.cementj.util.FileUtility
Convenience reference for the "file.separator" property from System.getProperties().
FileUtility - Class in org.cementj.util
Collection of File-related utilities.
FileUtility() - Constructor for class org.cementj.util.FileUtility
 
finalize() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
FloatArrayList - Class in org.cementj.collect
Dynamic list for float primitives.
FloatArrayList() - Constructor for class org.cementj.collect.FloatArrayList
 
FloatArrayList(int) - Constructor for class org.cementj.collect.FloatArrayList
 
FloatArrayList(int, int) - Constructor for class org.cementj.collect.FloatArrayList
 
flushXmlToFile(String, Object, String) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to flush an XML document from a JAXB binded object to a file.
flushXmlToFile(String, Object, File) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to flush an XML document from a JAXB binded object to a file.
flushXmlToStream(String, Object, OutputStream) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to flush an XML document from a JAXB binded object to an output stream of any type.
flushXmlToString(String, Object) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to flush an XML document from a JAXB binded object to a string.
flushXmlToString(String, Object, int) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to flush an XML document from a JAXB binded object to a string.
format(Date, StringBuffer, FieldPosition) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 

G

get(int) - Method in class org.cementj.collect.DoubleArrayList
Returns value at specified index from the list.
get(int) - Method in class org.cementj.collect.FloatArrayList
Returns value at specified index from the list.
get(int) - Method in class org.cementj.collect.IntegerArrayList
Returns value at specified index from the list.
get(int) - Method in class org.cementj.collect.ShortArrayList
Returns value at specified index from the list.
get2DigitYearStart() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
getBaseThrowable() - Method in exception org.cementj.base.ApplicationException
 
getBaseThrowable() - Method in exception org.cementj.base.ApplicationRuntimeException
 
getBundle(String, Connection) - Static method in class org.cementj.database.SQLResourceBundle
Provides a resource bundle given a database connection and a bundle name.
getBundle(String, Connection, ClassLoader) - Static method in class org.cementj.database.SQLResourceBundle
Provides a resource bundle given a database connection and a bundle name.
getCalendar() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
getConfigurationFileName() - Method in class org.cementj.base.ApplicationEnvironment
Method to return the applications configuration property filename.
getConnection(String) - Method in interface org.cementj.base.trans.TransactionContext
Provides a JDBC connection given an identifying label.
getConnection() - Method in class org.cementj.database.JDBCDriverDataSource
 
getConnection(String, String) - Method in class org.cementj.database.JDBCDriverDataSource
 
getConnection() - Method in class org.cementj.database.SQLAssistant
 
getConnection(String) - Static method in class org.cementj.util.J2EEUtility
Convenience one-liner to obtain a database connection from a given connection pool.
getCreationProperties() - Method in class org.cementj.pool.AbstractResourcePool
Gets the used to start resources in the pool.
getCurrentTimestamp() - Static method in class org.cementj.util.DatabaseUtility
Provides a java.sql.Timestamp set to the current ssytem time.
getDateFormatSymbols() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
getDbConnection() - Method in class org.cementj.base.DbDataAccessObject
 
getDbConnection() - Method in class org.cementj.database.SQLTimer
 
getDefaultDateFormat() - Method in class org.cementj.database.SQLAssistant
 
getDefaultDecimalFormat() - Method in class org.cementj.database.SQLAssistant
 
getDelimiter() - Method in class org.cementj.database.DbExporter
Delimiter used in export file.
getEnvironmentContextName() - Method in class org.cementj.base.trans.JNDITransactionContext
 
getExportConnection() - Method in class org.cementj.database.DbExporter
Connection used for the export operation.
getExportTableName() - Method in class org.cementj.database.DbExporter
Table name used for export.
getImportConnection() - Method in class org.cementj.database.DbExporter
Connection used for Import operation.
getImportTableName() - Method in class org.cementj.database.DbExporter
Table name used for import.
getJaxbXmlObject(String, File) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to return a JAXB binded XML object.
getJaxbXmlObject(String, String) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to return a JAXB binded XML Object
getJaxbXmlObject(String, InputStream) - Static method in class org.cementj.util.JAXBUtility
Convenience one-liner to returns a JAXB binded XML object.
getJDBCConnection(String, String, String, String) - Static method in class org.cementj.util.DatabaseUtility
Provides a JDBC connection given a DriverManager class name, connect string, userid, and password.
getJDBCConnection(String, String) - Static method in class org.cementj.util.DatabaseUtility
Generic utility that returns a database connection using a given driver.
getJndiResource(String, Class) - Static method in class org.cementj.util.J2EEUtility
Looks up a JNDI Resource
getJndiResource(Context, String, Class) - Static method in class org.cementj.util.J2EEUtility
Looks up a JNDI Reference given a context.
getLogger() - Static method in class org.cementj.log.LogManager
Obtains the current logger.
getLoginTimeout() - Method in class org.cementj.database.JDBCDriverDataSource
 
getLogWriter() - Method in class org.cementj.database.JDBCDriverDataSource
 
getMessageDrivenContext() - Method in class org.cementj.base.DefaultMessageDrivenBean
Returns the container-provided message-driven context.
getNewConnection(String) - Method in class org.cementj.base.trans.J2EETransactionContext
 
getNewConnection(String) - Method in class org.cementj.base.trans.JDBCTransactionContext
 
getNewConnection(String) - Method in class org.cementj.base.trans.JNDITransactionContext
 
getNewConnection(String) - Method in interface org.cementj.base.trans.TransactionContext
Provides a JDBC connection given an identifying label.
getNextRow(ResultSet) - Method in class org.cementj.database.SQLAssistant
Gets a row from a ResultSet as an array of Java objects.
getNumberFormat() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
getOracleJDBCConnection(String, int, String, String, String) - Static method in class org.cementj.util.DatabaseUtility
This returns an Oracle JDBC Connection based on the connection string, user id and password given.
getParameterType() - Method in class org.cementj.database.SQLTimer
 
getPool(String) - Static method in class org.cementj.pool.AbstractResourcePool
Gets the singleton instance of the resource pool.
getPooledConnection() - Method in class org.cementj.pool.DatabaseConnectionPool
Gets a Pooled Connection from the Resouce Pool.
getPoolName() - Method in class org.cementj.pool.AbstractResourcePool
Provides name of the resoruce pool.
getPoolName() - Method in interface org.cementj.pool.ResourcePool
Returns Resource Pool name.
getPoolSize() - Method in class org.cementj.pool.AbstractResourcePool
Gets the number of resources allocated to pool.
getPreparedStatement(String, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, Object, Object, Object, Object, Object, Object, Object, Object, Object) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getPreparedStatement(String, List) - Method in class org.cementj.database.SQLAssistant
Establishes and returns a ResultSet given a query and host variables.
getProperty(String) - Method in class org.cementj.base.ApplicationEnvironment
Returns the value of a property from the environment.
getProperty(String, String) - Method in class org.cementj.base.ApplicationEnvironment
Returns the value of a property from the environment.
getPropertyKeyEnumeration() - Method in class org.cementj.base.ApplicationEnvironment
 
getReasonForNotEquals(Object) - Method in class org.cementj.base.ValueObject
Provides a textual reason that two ValueObjects are not equal.
getResource() - Method in class org.cementj.pool.AbstractResourcePool
Obtains resource from the pool.
getResource() - Method in interface org.cementj.pool.ResourcePool
Gets a resource from the pool.
getSerializableResultSet(ResultSet) - Static method in class org.cementj.util.DatabaseUtility
Converts a ResultSet into a serializable version that can be returned to remote clients.
getSessionContext() - Method in class org.cementj.base.DefaultSessionBean
Returns the container-provided session context.
getSleepTimeInMillis() - Method in class org.cementj.pool.AbstractResourcePool
Gets the sleep interval time in milliseconds.
getSqlText() - Method in class org.cementj.database.SQLTimer
 
getStackTraceAsString(Throwable) - Static method in class org.cementj.util.ExceptionUtility
Convenience one-liner to convert a Throwable stack trace to a string.
getString(String) - Method in class org.cementj.database.SQLResourceBundle
Returns string for a given key.
getSybaseConnection(String, int, String, String) - Static method in class org.cementj.util.DatabaseUtility
Provides a Sybase database connection using the Sybase-provided driver com.sybase.jdbc2.jdbc.SybDriver.
getTimeZone() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
getTotalExecuteTime() - Method in class org.cementj.database.SQLTimer
 
getTotalExecutions() - Method in class org.cementj.database.SQLTimer
 
getTotalFetchTime() - Method in class org.cementj.database.SQLTimer
 
getTotalNbrRowsFetched() - Method in class org.cementj.database.SQLTimer
 
getTransactionContext() - Method in class org.cementj.base.BusinessLogicObject
 
getUpdateTimeIntervalInMillis() - Method in class org.cementj.base.ApplicationEnvironment
Provides the refresh time interval used to check fo changes in the properties file.
getUserTransaction() - Method in class org.cementj.base.DefaultMessageDrivenBean
Obtains the UserTransaction from the container-provided message-driven context.
getUserTransaction() - Method in class org.cementj.base.DefaultSessionBean
Obtains the UserTransaction from the container-provided session context.
getUserTransaction() - Static method in class org.cementj.util.J2EEUtility
Convenience one-liner to obtain current UserTransaction from the j2ee container.

H

hashCode() - Method in class org.cementj.base.ValueObject
 
hashCode() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 

I

importFile(String) - Method in class org.cementj.database.DbExporter
Imports a file from delimited text.
ImproperUsageException - Exception in org.cementj.base
This exception is targeted toward improper usage by end-users or client callers in the case of APIs.
ImproperUsageException() - Constructor for exception org.cementj.base.ImproperUsageException
 
ImproperUsageException(String) - Constructor for exception org.cementj.base.ImproperUsageException
 
ImproperUsageException(String, Throwable) - Constructor for exception org.cementj.base.ImproperUsageException
 
INFO - Static variable in interface org.cementj.log.Logger
 
init() - Method in class org.cementj.base.ValueObject
 
initialize(Properties) - Method in interface org.cementj.pool.Resource
Initialize Resource.
initPool() - Method in class org.cementj.pool.AbstractResourcePool
Allocates initial resources for pool.
INTEGER_TYPE - Static variable in class org.cementj.database.SQLTimer
 
IntegerArrayList - Class in org.cementj.collect
An arraylist for primitive "int" data types.
IntegerArrayList() - Constructor for class org.cementj.collect.IntegerArrayList
 
IntegerArrayList(int) - Constructor for class org.cementj.collect.IntegerArrayList
 
IntegerArrayList(int, int) - Constructor for class org.cementj.collect.IntegerArrayList
 
InternalApplicationException - Exception in org.cementj.base
This exception is targeted toward application developers, administrators, and support personnel.
InternalApplicationException() - Constructor for exception org.cementj.base.InternalApplicationException
 
InternalApplicationException(String) - Constructor for exception org.cementj.base.InternalApplicationException
 
InternalApplicationException(String, Throwable) - Constructor for exception org.cementj.base.InternalApplicationException
 
isConvertStringOn() - Method in class org.cementj.database.SQLAssistant
 
isLenient() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
isSpaceTrimOn() - Method in class org.cementj.database.SQLAssistant
 
isValid() - Method in interface org.cementj.pool.Resource
Tests validity of Resource.

J

J2EETransactionContext - Class in org.cementj.base.trans
Implementation of a TransactionContext suitable for applications running inside a J2EE container.
J2EETransactionContext() - Constructor for class org.cementj.base.trans.J2EETransactionContext
 
J2EETransactionContext(EJBContext) - Constructor for class org.cementj.base.trans.J2EETransactionContext
 
J2EEUtility - Class in org.cementj.util
Collection of J2EE Utility functions.
J2EEUtility() - Constructor for class org.cementj.util.J2EEUtility
 
JavaV4Logger - Class in org.cementj.log
A Java 1.4 Logger implementation of Logger for those applications who use JDK logging.
JavaV4Logger() - Constructor for class org.cementj.log.JavaV4Logger
 
JavaV4Logger(Handler) - Constructor for class org.cementj.log.JavaV4Logger
 
JAXBUtility - Class in org.cementj.util
Collection of JAXB Utility functions.
JAXBUtility() - Constructor for class org.cementj.util.JAXBUtility
 
JDBCDriverDataSource - Class in org.cementj.database
 
JDBCDriverDataSource() - Constructor for class org.cementj.database.JDBCDriverDataSource
 
JDBCDriverDataSource(String, String, String, String) - Constructor for class org.cementj.database.JDBCDriverDataSource
 
JDBCTransactionContext - Class in org.cementj.base.trans
Implementation of a TransactionContext suitable for applications running outside a J2EE container.
JDBCTransactionContext(String, String, String, String, String) - Constructor for class org.cementj.base.trans.JDBCTransactionContext
 
JMSUtility - Class in org.cementj.util
Collection of JMS Utility functions.
JMSUtility() - Constructor for class org.cementj.util.JMSUtility
 
JNDITransactionContext - Class in org.cementj.base.trans
JNDI-based TransactionContext for use in J2EE containers without needing EJB.
JNDITransactionContext() - Constructor for class org.cementj.base.trans.JNDITransactionContext
 
JNDITransactionContext(String) - Constructor for class org.cementj.base.trans.JNDITransactionContext
 

L

length() - Method in class org.cementj.collect.DoubleArrayList
Returns length of list.
length() - Method in class org.cementj.collect.FloatArrayList
Returns length of list.
length() - Method in class org.cementj.collect.IntegerArrayList
Returns length of list.
length() - Method in class org.cementj.collect.ShortArrayList
Returns length of list.
LINE_FEED - Static variable in class org.cementj.common.CommonCharacter
Convenience reference for the "line.separator" property from System.getProperties().
loadProperties() - Method in class org.cementj.base.ApplicationEnvironment
 
loadProperties(Properties) - Method in class org.cementj.base.ApplicationEnvironment
Appends properties to the application property set.
log(int, Object) - Method in class org.cementj.log.ConsoleLogger
 
log(int, Object, Throwable) - Method in class org.cementj.log.ConsoleLogger
 
log(int, Object) - Method in class org.cementj.log.JavaV4Logger
 
log(int, Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
log(int, Object) - Method in class org.cementj.log.Log4JLogger
 
log(int, Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
log(int, Object) - Method in interface org.cementj.log.Logger
 
log(int, Object, Throwable) - Method in interface org.cementj.log.Logger
 
Log4JLogger - Class in org.cementj.log
A Log4J implementation of Logger for those applications who use Log4J.
Log4JLogger() - Constructor for class org.cementj.log.Log4JLogger
 
Log4JLogger(Appender) - Constructor for class org.cementj.log.Log4JLogger
 
Log4JLogger(LoggerRepository, Appender) - Constructor for class org.cementj.log.Log4JLogger
 
logDebug(Object) - Method in class org.cementj.log.AbstractLogger
 
logDebug(Object, Throwable) - Method in class org.cementj.log.AbstractLogger
 
logDebug(Object) - Method in class org.cementj.log.JavaV4Logger
 
logDebug(Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
logDebug(Object) - Method in class org.cementj.log.Log4JLogger
 
logDebug(Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
logDebug(Object) - Method in interface org.cementj.log.Logger
 
logDebug(Object, Throwable) - Method in interface org.cementj.log.Logger
 
logError(Object) - Method in class org.cementj.log.AbstractLogger
 
logError(Object, Throwable) - Method in class org.cementj.log.AbstractLogger
 
logError(Object) - Method in class org.cementj.log.JavaV4Logger
 
logError(Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
logError(Object) - Method in class org.cementj.log.Log4JLogger
 
logError(Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
logError(Object) - Method in interface org.cementj.log.Logger
 
logError(Object, Throwable) - Method in interface org.cementj.log.Logger
 
logFatal(Object) - Method in class org.cementj.log.AbstractLogger
 
logFatal(Object, Throwable) - Method in class org.cementj.log.AbstractLogger
 
logFatal(Object) - Method in class org.cementj.log.JavaV4Logger
 
logFatal(Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
logFatal(Object) - Method in class org.cementj.log.Log4JLogger
 
logFatal(Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
logFatal(Object) - Method in interface org.cementj.log.Logger
 
logFatal(Object, Throwable) - Method in interface org.cementj.log.Logger
 
Logger - Interface in org.cementj.log
A logging interface used to decouple applications from specific logging utilities.
logInfo(Object) - Method in class org.cementj.log.AbstractLogger
 
logInfo(Object, Throwable) - Method in class org.cementj.log.AbstractLogger
 
logInfo(Object) - Method in class org.cementj.log.JavaV4Logger
 
logInfo(Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
logInfo(Object) - Method in class org.cementj.log.Log4JLogger
 
logInfo(Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
logInfo(Object) - Method in interface org.cementj.log.Logger
 
logInfo(Object, Throwable) - Method in interface org.cementj.log.Logger
 
LogManager - Class in org.cementj.log
This class registers the logger used by all utilities in CementJ.
logStatus() - Method in class org.cementj.pool.AbstractResourcePool
Provides pool status information.
logStatus(Logger) - Method in class org.cementj.pool.AbstractResourcePool
Provides pool status information.
logWarning(Object) - Method in class org.cementj.log.AbstractLogger
 
logWarning(Object, Throwable) - Method in class org.cementj.log.AbstractLogger
 
logWarning(Object) - Method in class org.cementj.log.JavaV4Logger
 
logWarning(Object, Throwable) - Method in class org.cementj.log.JavaV4Logger
 
logWarning(Object) - Method in class org.cementj.log.Log4JLogger
 
logWarning(Object, Throwable) - Method in class org.cementj.log.Log4JLogger
 
logWarning(Object) - Method in interface org.cementj.log.Logger
 
logWarning(Object, Throwable) - Method in interface org.cementj.log.Logger
 

M

mail(String, String) - Static method in class org.cementj.util.MailUtility
 
MailUtility - Class in org.cementj.util
Class to make mailing from Java easy.
MailUtility() - Constructor for class org.cementj.util.MailUtility
 
main(String[]) - Static method in class org.cementj.database.DbExporter
 
main(String[]) - Static method in class org.cementj.database.SQLTimer
 
MAX_PRIORITY - Static variable in class org.cementj.collect.Queue
 
MIN_PRIORITY - Static variable in class org.cementj.collect.Queue
 

N

NORM_PRIORITY - Static variable in class org.cementj.collect.Queue
 
NULL - Static variable in class org.cementj.database.SQLAssistant
 
NUMBER_TYPE - Static variable in class org.cementj.database.SQLTimer
 

O

onMessage(Message) - Method in class org.cementj.base.DefaultMessageDrivenBean
You must implement processing for messages for a MessageDrivenBean to be usedful.
ORACLE_TYPE4_DRIVER - Static variable in class org.cementj.util.DatabaseUtility
 
org.cementj.base - package org.cementj.base
This package contains base classes and excpetions for business applications.
org.cementj.base.trans - package org.cementj.base.trans
 
org.cementj.collect - package org.cementj.collect
Provides collection classes not provided by the JDK, such as a queue and dynamicly sized arrays for primitives.
org.cementj.common - package org.cementj.common
General collection of utilities not provided by the JDK, such as a thread-safe implementation of SimpleDateFormat.
org.cementj.database - package org.cementj.database
Provides utilities to aid JDBC database development.
org.cementj.log - package org.cementj.log
Provides logger abstraction allowing applications to easily switch logging utilities without changing code.
org.cementj.pool - package org.cementj.pool
Provides a generic pooling package.
org.cementj.util - package org.cementj.util
One liner coding utilities meant to save typing.

P

parse(String, ParsePosition) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
parse(String) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
parseObject(String, ParsePosition) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
parseObject(String) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
PATH_SEPARATOR - Static variable in class org.cementj.common.CommonCharacter
Convenience reference for the "path.separator" property from System.getProperties().
peek() - Method in class org.cementj.collect.Queue
Provides the next object on the Queue without removing it.
pop() - Method in class org.cementj.collect.Queue
Removes the next object on the Queue and provides it to the caller.
printStackTrace(PrintWriter) - Method in exception org.cementj.base.ApplicationException
 
printStackTrace() - Method in exception org.cementj.base.ApplicationException
 
printStackTrace(PrintStream) - Method in exception org.cementj.base.ApplicationException
 
printStackTrace(PrintWriter) - Method in exception org.cementj.base.ApplicationRuntimeException
 
printStackTrace() - Method in exception org.cementj.base.ApplicationRuntimeException
 
printStackTrace(PrintStream) - Method in exception org.cementj.base.ApplicationRuntimeException
 
purgeDirectory(File) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge a directory including all files and subdirectories -- Use With Extreme Caution!
purgeDirectory(String) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge a directory including all files and subdirectories -- Use With Extreme Caution!
purgeUnderlyingFiles(String, GregorianCalendar) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge underlying files older than a specified age -- Use With Extreme Caution!
purgeUnderlyingFiles(String, Date) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge underlying files older than a specified age -- Use With Extreme Caution!
purgeUnderlyingFiles(String, long) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge underlying files older than a specified age -- Use With Extreme Caution!
purgeUnderlyingFiles(File, long) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to purge underlying files older than a specified age -- Use With Extreme Caution!
push(Object) - Method in class org.cementj.collect.Queue
Adds an object to the Queue
push(Object, int) - Method in class org.cementj.collect.Queue
Adds an object to the Queue

Q

Queue - Class in org.cementj.collect
A classic implementation of a queue.
Queue() - Constructor for class org.cementj.collect.Queue
 
Queue(Collection) - Constructor for class org.cementj.collect.Queue
 
Queue(int) - Constructor for class org.cementj.collect.Queue
 

R

recycleResource(Resource) - Method in class org.cementj.pool.AbstractResourcePool
Validates and puts a resource back in the resource pool.
recycleResource(Resource) - Method in interface org.cementj.pool.ResourcePool
Defines how a resource is recycled for use by others.
registerConnectiontype(String, String, String, String, String) - Method in class org.cementj.base.trans.JDBCTransactionContext
 
Resource - Interface in org.cementj.pool
Interface for generic resource implementations.
ResourceException - Exception in org.cementj.pool
Exception for defined resources.
ResourceException() - Constructor for exception org.cementj.pool.ResourceException
 
ResourceException(String) - Constructor for exception org.cementj.pool.ResourceException
 
ResourceException(String, Throwable) - Constructor for exception org.cementj.pool.ResourceException
 
ResourcePool - Interface in org.cementj.pool
Interface for Resource Pools.
rollback(Connection) - Static method in class org.cementj.util.DatabaseUtility
Rolls back a dataabse transaction logging a warning if a SQLException is encountered.
rollback(UserTransaction) - Static method in class org.cementj.util.J2EEUtility
Convenience one-liner to rollback the given UserTransaction logging a warning if an error is received.
rollbackAll() - Method in class org.cementj.base.trans.J2EETransactionContext
 
rollbackAll() - Method in interface org.cementj.base.trans.TransactionContext
Issues rollbacks for your JTA transaction (or all JDBC transactions) in progress.
run() - Method in class org.cementj.database.SQLTimer
 
run() - Method in class org.cementj.pool.AbstractResourcePool
Validates idle resources in the pool, replaces them if necessary.

S

saveFileToDisk(String, String) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to save data to a specific file on Disk.
saveFileToDisk(File, String) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to save data to a specific file on Disk.
saveFileToDisk(String, byte[]) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to save data to a specific file on Disk.
saveFileToDisk(File, byte[]) - Static method in class org.cementj.util.FileUtility
Convenience one-liner to save data to a specific file on Disk.
set2DigitYearStart(Date) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setCalendar(Calendar) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setConnection(Connection) - Method in class org.cementj.database.SQLAssistant
 
setConvertStringOn(boolean) - Method in class org.cementj.database.SQLAssistant
 
setCreationProperties(Properties) - Method in class org.cementj.pool.AbstractResourcePool
Sets properties used to create resources for the pool.
setDateFormatSymbols(DateFormatSymbols) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setDbConnection(Connection) - Method in class org.cementj.base.DbDataAccessObject
 
setDbConnection(Connection) - Method in class org.cementj.database.SQLTimer
 
setDefaultDateFormat(SimpleDateFormat) - Method in class org.cementj.database.SQLAssistant
 
setDefaultDecimalFormat(DecimalFormat) - Method in class org.cementj.database.SQLAssistant
 
setDelimiter(String) - Method in class org.cementj.database.DbExporter
Delimiter used in export file.
setEnvironmentContextName(String) - Method in class org.cementj.base.trans.JNDITransactionContext
 
setExportConnection(Connection) - Method in class org.cementj.database.DbExporter
Connection used for the export operation.
setExportTableName(String) - Method in class org.cementj.database.DbExporter
Table name used for export.
setImportConnection(Connection) - Method in class org.cementj.database.DbExporter
Connection used for Import operation.
setImportTableName(String) - Method in class org.cementj.database.DbExporter
Table name used for import.
setLenient(boolean) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setLogger(Logger) - Static method in class org.cementj.log.LogManager
Sets the current logger.
setLoginTimeout(int) - Method in class org.cementj.database.JDBCDriverDataSource
 
setLogWriter(PrintWriter) - Method in class org.cementj.database.JDBCDriverDataSource
 
setMessageDrivenContext(MessageDrivenContext) - Method in class org.cementj.base.DefaultMessageDrivenBean
Records message driven context provided by the J2EE container.
setNumberFormat(NumberFormat) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setParameterType(String[]) - Method in class org.cementj.database.SQLTimer
 
setPoolSize(int) - Method in class org.cementj.pool.AbstractResourcePool
Sets the number of resources that should be allocated to the pool.
setProperty(String, String) - Method in class org.cementj.base.ApplicationEnvironment
Sets a property in the environment.
setScriptFileName(String) - Method in class org.cementj.database.SQLTimer
Sets a script file for the timing test.
setSessionContext(SessionContext) - Method in class org.cementj.base.DefaultSessionBean
Records session context provided by the J2EE container.
setSleepTimeInMillis(long) - Method in class org.cementj.pool.AbstractResourcePool
Sets the sleep time.
setSpaceTrimOn(boolean) - Method in class org.cementj.database.SQLAssistant
 
setSqlText(String) - Method in class org.cementj.database.SQLTimer
 
setTimeZone(TimeZone) - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
setTransactionContext(TransactionContext) - Method in class org.cementj.base.BusinessLogicObject
 
ShortArrayList - Class in org.cementj.collect
Dynamic list for short primitives.
ShortArrayList() - Constructor for class org.cementj.collect.ShortArrayList
 
ShortArrayList(int) - Constructor for class org.cementj.collect.ShortArrayList
 
ShortArrayList(int, int) - Constructor for class org.cementj.collect.ShortArrayList
 
size() - Method in class org.cementj.collect.Queue
Provides size of Queue.
SQLAssistant - Class in org.cementj.database
Class providing SQL statement execution assistance.
SQLAssistant(Connection) - Constructor for class org.cementj.database.SQLAssistant
 
SQLResourceBundle - Class in org.cementj.database
Resource bundles database specific objects.
SQLResourceBundle() - Constructor for class org.cementj.database.SQLResourceBundle
 
SQLStatementExecutor - Class in org.cementj.base
Class providing support for simple SQL statement executions.
SQLStatementExecutor() - Constructor for class org.cementj.base.SQLStatementExecutor
 
SQLStatementExecutor(Connection) - Constructor for class org.cementj.base.SQLStatementExecutor
 
SQLTimer - Class in org.cementj.database
SQLTimer is a utility that will time a SQL statement given a test script.
SQLTimer() - Constructor for class org.cementj.database.SQLTimer
 
SQLTimer(Properties) - Constructor for class org.cementj.database.SQLTimer
 
STRING_TYPE - Static variable in class org.cementj.database.SQLTimer
 
SYBASE_JDBC_DRIVER_NAME - Static variable in class org.cementj.util.DatabaseUtility
 

T

TAB - Static variable in class org.cementj.common.CommonCharacter
Convenience reference for the "tab" (\t) property.
terminate() - Method in interface org.cementj.pool.Resource
Terminate Resource.
ThreadsafeSimpleDateFormat - Class in org.cementj.common
Threadsafe extension of SimpleDateFormat.
ThreadsafeSimpleDateFormat() - Constructor for class org.cementj.common.ThreadsafeSimpleDateFormat
 
ThreadsafeSimpleDateFormat(String) - Constructor for class org.cementj.common.ThreadsafeSimpleDateFormat
 
ThreadsafeSimpleDateFormat(String, DateFormatSymbols) - Constructor for class org.cementj.common.ThreadsafeSimpleDateFormat
 
ThreadsafeSimpleDateFormat(String, Locale) - Constructor for class org.cementj.common.ThreadsafeSimpleDateFormat
 
TIMESTAMP_FORMAT - Static variable in class org.cementj.database.DbExporter
 
TIMESTAMP_TYPE - Static variable in class org.cementj.database.SQLTimer
 
toArray() - Method in class org.cementj.collect.DoubleArrayList
Converts list to an array.
toArray() - Method in class org.cementj.collect.FloatArrayList
Converts list to an array.
toArray() - Method in class org.cementj.collect.IntegerArrayList
Converts list to an array.
toArray() - Method in class org.cementj.collect.ShortArrayList
Converts list to an array.
toByteArray() - Method in class org.cementj.collect.IntegerArrayList
Returns list as byte array.
toLocalizedPattern() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
toPattern() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
toString() - Method in class org.cementj.base.ValueObject
 
toString() - Method in class org.cementj.common.ThreadsafeSimpleDateFormat
 
TransactionContext - Interface in org.cementj.base.trans
Abstracts transaction control so that classes can be deployment independent.
TransactionException - Exception in org.cementj.base.trans
Exception for TransactionContext errors.
TransactionException() - Constructor for exception org.cementj.base.trans.TransactionException
 
TransactionException(String) - Constructor for exception org.cementj.base.trans.TransactionException
 
TransactionException(String, Throwable) - Constructor for exception org.cementj.base.trans.TransactionException
 

V

ValueObject - Class in org.cementj.base
Generic functionality for objects used to transfer data between objects.
ValueObject() - Constructor for class org.cementj.base.ValueObject
 

W

WARNING - Static variable in interface org.cementj.log.Logger
 

_

_dbConnection - Variable in class org.cementj.base.DbDataAccessObject
 
_messageDrivenContext - Variable in class org.cementj.base.DefaultMessageDrivenBean
 
_sessionContext - Variable in class org.cementj.base.DefaultSessionBean
 
_sqlAssistant - Variable in class org.cementj.base.DbDataAccessObject
 
_transactionContext - Variable in class org.cementj.base.BusinessLogicObject
 

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

Copyright © 2003 Delta Vortex Technologies, Inc. All Rights Reserved.