Uses of Package
org.h2.util

Packages that use org.h2.util
org.h2.command This package contains the parser and the base classes for prepared SQL statements. 
org.h2.command.ddl Contains DDL (data definition language) and related SQL statements. 
org.h2.command.dml Contains DML (data manipulation language) and related SQL statements. 
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.expression Expressions include mathematical operations, conditions, simple values, and functions. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.log Undo and redo log implementation. 
org.h2.message Trace (logging facility) and error message tool. 
org.h2.result Implementation of row and internal result sets. 
org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). 
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
org.h2.table Classes related to a table and table meta data. 
org.h2.tools Various tools. 
org.h2.util Internal utility classes. 
 

Classes in org.h2.util used by org.h2.command
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.command.ddl
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.command.dml
ObjectArray
          The object array is basically the same as ArrayList.
SmallLRUCache
          This class implements a small LRU object cache.
TempFileDeleter
          This class deletes temporary files when they are not used any longer.
 

Classes in org.h2.util used by org.h2.engine
ObjectArray
          The object array is basically the same as ArrayList.
SmallLRUCache
          This class implements a small LRU object cache.
TempFileDeleter
          This class deletes temporary files when they are not used any longer.
 

Classes in org.h2.util used by org.h2.expression
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.index
CacheObject
          The base object for all cached objects.
IntArray
          An array with integer element.
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.log
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.message
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.result
CacheObject
          The base object for all cached objects.
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.schema
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.store
BitField
          A list of bits.
Cache
          The cache keeps frequently used objects in the main memory.
CacheObject
          The base object for all cached objects.
CacheWriter
          The cache writer is called by the cache to persist changed data that needs to be removed from the cache.
ObjectArray
          The object array is basically the same as ArrayList.
SmallLRUCache
          This class implements a small LRU object cache.
TempFileDeleter
          This class deletes temporary files when they are not used any longer.
 

Classes in org.h2.util used by org.h2.table
ObjectArray
          The object array is basically the same as ArrayList.
 

Classes in org.h2.util used by org.h2.tools
SmallLRUCache
          This class implements a small LRU object cache.
TempFileDeleter
          This class deletes temporary files when they are not used any longer.
Tool
          Command line tools implement the tool interface so that they can be used in the H2 Console.
 

Classes in org.h2.util used by org.h2.util
Cache
          The cache keeps frequently used objects in the main memory.
CacheObject
          The base object for all cached objects.
CacheWriter
          The cache writer is called by the cache to persist changed data that needs to be removed from the cache.
HashBase
          The base for other hash classes.
IntArray
          An array with integer element.
ObjectArray
          The object array is basically the same as ArrayList.
Permutations
          A class to iterate over all permutations of an array.
SmallLRUCache
          This class implements a small LRU object cache.
SortedProperties
          Sorted properties file.
StatementBuilder
          A utility class to build a statement.
TempFileDeleter
          This class deletes temporary files when they are not used any longer.
ValueHashMap
          This hash map supports keys of type Value.