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

I

ImgUtil - Class in com.bristle.javalib.awt
This class contains utility routines for manipulating images.
ImgUtil() - Constructor for class com.bristle.javalib.awt.ImgUtil
 
ImgUtil.NoImageFoundException - Exception in com.bristle.javalib.awt
This exception is thrown when the specified data source (InputStream, file, etc) contains no image.
ImgUtil.NoImageFoundException(String) - Constructor for exception com.bristle.javalib.awt.ImgUtil.NoImageFoundException
 
ImgUtil.ScaleAlgorithm - Class in com.bristle.javalib.awt
This class represents an enumerated type that specifies whether scaling of Images should be done with an emphasis on speed or image smoothness.
ImgUtil.ScaleAlgorithm(String) - Constructor for class com.bristle.javalib.awt.ImgUtil.ScaleAlgorithm
 
ImgUtil.ScaleAlgorithm.UnexpectedEnumValueException - Exception in com.bristle.javalib.awt
 
ImgUtil.ScaleAlgorithm.UnexpectedEnumValueException(String) - Constructor for exception com.bristle.javalib.awt.ImgUtil.ScaleAlgorithm.UnexpectedEnumValueException
 
ImgUtil.Tester - Class in com.bristle.javalib.awt
Each class contains a Tester inner class with a main() for easier unit testing.
ImgUtil.Tester() - Constructor for class com.bristle.javalib.awt.ImgUtil.Tester
 
incrementIndex() - Method in class com.bristle.javalib.io.FileTreeIterator
Increment the value on the top of the stack of indexes.
init(int, String, String, String) - Method in class com.bristle.javalib.log.LoggerUtil
Initialize the LoggerUtil with info to be used in future calls.
init(String) - Method in class com.bristle.javalib.sql.ConnectionPool
Common method to be called from all constructors.
init(String) - Method in class com.bristle.javalib.sql.DummyConnectionPool
 
initDocument() - Static method in class com.bristle.javalib.xml.XMLUtil.Tester
 
initDocument() - Static method in class com.bristle.javalib.xml.XSLUtil.Tester
 
initOutputFormat() - Static method in class com.bristle.javalib.xml.XMLUtil
Return a new OutputFormat initialized with our standard settings.
insert(String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute an INSERT statement, then disconnect, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertAfterDelimiters(String, char, String) - Static method in class com.bristle.javalib.util.StrUtil
Return a string that is a copy of strString with strInsert inserted after each occurrence of chDelim.
insertBefore(Node, Node, Node) - Static method in class com.bristle.javalib.xml.XMLUtil
Inserts xmlNewChild as a child of xmlParent before the existing child xmlRefChild, or as the last child if xmlRefChild is null, copying the new Node and its entire subtree from a different Document if necessary.
insertCommas(String) - Static method in class com.bristle.javalib.util.StrUtil
Returns the specified string with commas inserted every 3 chars counting from the right -- the traditional formatting of a large number, broken into ones, thousands, millions, etc.
insertIfNotExists(String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT COUNT(*) FROM statement to decide if a row exists and if not, execute an INSERT statement, then disconnect, returning true if the row existed, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertIfNotExistsMultiTable(String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT COUNT(*) FROM statement to decide if a row exists and if not, execute an INSERT statement possibly into a different table, then disconnect, returning true if the row existed, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertIfNotExistsMultiTableReturnPK(String, String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT statement to get the primary key of an existing row, and if it doesn't exist, execute an INSERT statement possibly into a different table and execute a different SELECT statement to get a primary key, then disconnect, returning an InsertOrUpdateResult object, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertIfNotExistsReturnPK(String, String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT statement to get the primary key of an existing row, and if it doesn't exist, execute an INSERT statement into the table and re-execute the SELECT statement to get the primary key, then disconnect, returning an InsertOrUpdateResult object, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertOrUpdate(String, String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT COUNT(*) FROM statement to decide if a row exists and based on its existence, execute an INSERT or UPDATE statement, then disconnect, returning true if the row existed, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
insertOrUpdateReturnPK(String, String, String, String, String, String) - Method in class com.bristle.javalib.sql.ConnectionPoolUtil
Connect to the database, execute a SELECT statement to decide if a row exists and based on its existence, execute an INSERT or UPDATE statement, then disconnect, returning an InsertOrUpdateResult object, using the default values for Connection, Logger, ConnectionPool, and DBConfig.
INTEGER - Static variable in class com.bristle.javalib.ui.DisplayDataTypeEnum
 
IntegerWrapper - Class in com.bristle.javalib.util
This class wraps an Integer.
IntegerWrapper(int) - Constructor for class com.bristle.javalib.util.IntegerWrapper
Constructor.
IntegerWrapper(Integer) - Constructor for class com.bristle.javalib.util.IntegerWrapper
Constructor.
IntegerWrapper.Tester - Class in com.bristle.javalib.util
Each class contains a Tester inner class with a main() for easier unit testing.
IntegerWrapper.Tester() - Constructor for class com.bristle.javalib.util.IntegerWrapper.Tester
 
intercept(HttpServlet, HttpServletRequest, HttpServletResponse) - Static method in class com.bristle.javalib.net.http.ServletDebugger
Examine the specified HTTP request, and decide whether to invoke the "servlet debugger", returning true if invoked; false otherwise.
intHowOftenUsed - Variable in class com.bristle.javalib.sql.ConnectionPool.ConnectionInfo
 
intMAX_SCALE_CURRENT_SIZE - Static variable in class com.bristle.javalib.awt.ImgUtil
 
intMAX_SCALE_DOUBLE_CURRENT_SIZE - Static variable in class com.bristle.javalib.awt.ImgUtil
 
intMAX_SCALE_NO_LIMIT - Static variable in class com.bristle.javalib.awt.ImgUtil
 
intMAX_SCALE_TRIPLE_CURRENT_SIZE - Static variable in class com.bristle.javalib.awt.ImgUtil
 
intPK - Variable in class com.bristle.javalib.sql.ConnectionPoolUtil.InsertOrUpdateResult
 
InvokableMethodViaMap - Class in com.bristle.javalib.jsp
This abstract class supports the ability for an arbitrary one-parameter Java method to be invoked via a JSP EL expression, by presenting the method as a map.
InvokableMethodViaMap() - Constructor for class com.bristle.javalib.jsp.InvokableMethodViaMap
 
invoke(HttpServlet, HttpServletRequest, HttpServletResponse) - Static method in class com.bristle.javalib.net.http.ServletDebugger
Invoke the "servlet debugger".
isClosed() - Method in class com.bristle.javalib.sql.DummyConnection
 
isEmpty() - Method in class com.bristle.javalib.bean.MapBean
Calls Map.isEmpty()
isNullOrEmpty(String) - Static method in class com.bristle.javalib.util.StrUtil
Return true if the specified String is null or empty; false otherwise.
isReadOnly() - Method in class com.bristle.javalib.sql.DummyConnection
 
isReadOnly() - Method in class com.bristle.javalib.ui.PropertyDisplayData
Get the readonly flag.
isRequired() - Method in class com.bristle.javalib.ui.PropertyDisplayData
Get the required flag.
iterator() - Method in class com.bristle.javalib.bean.MapBean
Calls Set.iterator() on the Set returned by Map.entrySet()
iteratorToString(Iterator) - Static method in class com.bristle.javalib.util.IterUtil
Return a String version of the Iterator.
IterUtil - Class in com.bristle.javalib.util
This class contains utility routines for creating and manipulating Java Iterators.
IterUtil() - Constructor for class com.bristle.javalib.util.IterUtil
 
IterUtil.Tester - Class in com.bristle.javalib.util
Each class contains a Tester inner class with a main() for easier unit testing.
IterUtil.Tester() - Constructor for class com.bristle.javalib.util.IterUtil.Tester
 

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