Uses of Class
org.h2.util.ObjectArray

Packages that use ObjectArray
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.util Internal utility classes. 
 

Uses of ObjectArray in org.h2.command
 

Fields in org.h2.command declared as ObjectArray
protected  ObjectArray<Parameter> Prepared.parameters
          The list of parameters.
 

Methods in org.h2.command that return ObjectArray
 ObjectArray<ParameterInterface> CommandRemote.getParameters()
           
 ObjectArray<Parameter> Prepared.getParameters()
          Get the parameter list.
 ObjectArray<? extends ParameterInterface> CommandList.getParameters()
           
abstract  ObjectArray<? extends ParameterInterface> Command.getParameters()
          Get the list of parameters.
 ObjectArray<? extends ParameterInterface> CommandInterface.getParameters()
          Get the parameters (if any).
 ObjectArray<? extends ParameterInterface> CommandContainer.getParameters()
           
 

Methods in org.h2.command with parameters of type ObjectArray
 void Prepared.setParameterList(ObjectArray<Parameter> parameters)
          Set the parameter list of this statement.
 

Constructors in org.h2.command with parameters of type ObjectArray
CommandRemote(SessionRemote session, ObjectArray<Transfer> transferList, java.lang.String sql, int fetchSize)
           
 

Uses of ObjectArray in org.h2.command.ddl
 

Fields in org.h2.command.ddl declared as ObjectArray
 ObjectArray<Column> CreateTableData.columns
          The column list.
 

Uses of ObjectArray in org.h2.command.dml
 

Methods in org.h2.command.dml that return ObjectArray
 ObjectArray<Expression> Select.getExpressions()
           
 ObjectArray<Expression> SelectUnion.getExpressions()
           
abstract  ObjectArray<Expression> Query.getExpressions()
          The the list of select expressions.
 ObjectArray<TableFilter> Select.getTopFilters()
           
 

Methods in org.h2.command.dml with parameters of type ObjectArray
 SortOrder Query.prepareOrder(ObjectArray<SelectOrderBy> orderList, int expressionCount)
          Create a SortOrder object given the list of SelectOrderBy objects.
 void Select.setExpressions(ObjectArray<Expression> expressions)
           
 void Select.setGroupBy(ObjectArray<Expression> group)
           
 void Select.setOrder(ObjectArray<SelectOrderBy> order)
           
 void SelectUnion.setOrder(ObjectArray<SelectOrderBy> order)
           
abstract  void Query.setOrder(ObjectArray<SelectOrderBy> order)
          Set the order by list.
 

Uses of ObjectArray in org.h2.engine
 

Fields in org.h2.engine declared as ObjectArray
protected  ObjectArray<java.lang.String> SessionWithState.sessionState
           
 

Methods in org.h2.engine that return ObjectArray
 ObjectArray<UserAggregate> Database.getAllAggregates()
           
 ObjectArray<Comment> Database.getAllComments()
           
 ObjectArray<FunctionAlias> Database.getAllFunctionAliases()
           
 ObjectArray<Right> Database.getAllRights()
           
 ObjectArray<Role> Database.getAllRoles()
           
 ObjectArray<SchemaObject> Database.getAllSchemaObjects(int type)
          Get all schema objects of the given type.
 ObjectArray<Schema> Database.getAllSchemas()
           
 ObjectArray<Setting> Database.getAllSettings()
           
 ObjectArray<Storage> Database.getAllStorages()
           
 ObjectArray<Table> Database.getAllTablesAndViews()
          Get all tables and views.
 ObjectArray<UserDataType> Database.getAllUserDataTypes()
           
 ObjectArray<User> Database.getAllUsers()
           
 ObjectArray<DbObject> DbObjectBase.getChildren()
           
 ObjectArray<DbObject> DbObject.getChildren()
          Get the list of dependent children (for tables, this includes indexes and so on).
 ObjectArray<DbObject> User.getChildren()
           
 ObjectArray<Table> Session.getLocalTempTables()
           
 

Methods in org.h2.engine with parameters of type ObjectArray
static void MetaRecord.sort(ObjectArray<MetaRecord> records)
          Sort the list of meta records by 'create order'.
 

Uses of ObjectArray in org.h2.expression
 

Methods in org.h2.expression with parameters of type ObjectArray
 void TableFunction.setColumns(ObjectArray<Column> columns)
           
 void Aggregate.setOrder(ObjectArray<SelectOrderBy> orderBy)
          Set the order for GROUP_CONCAT.
 

Constructors in org.h2.expression with parameters of type ObjectArray
ConditionIn(Database database, Expression left, ObjectArray<Expression> values)
          Create a new IN(..) condition.
 

Uses of ObjectArray in org.h2.index
 

Fields in org.h2.index declared as ObjectArray
protected  ObjectArray<SearchRow> BtreePage.pageData
          The list of data pages.
 

Methods in org.h2.index that return ObjectArray
 ObjectArray<DbObject> MultiVersionIndex.getChildren()
           
 

Methods in org.h2.index with parameters of type ObjectArray
 void IndexCursor.find(Session session, ObjectArray<IndexCondition> indexConditions)
          Re-evaluate the start and end values of the index search for rows.
static IndexCondition IndexCondition.getInList(ExpressionColumn column, ObjectArray<Expression> list)
          Create an index condition with the compare type IN_LIST and with the given parameters.
 

Constructors in org.h2.index with parameters of type ObjectArray
ViewIndex(TableView view, java.lang.String querySQL, ObjectArray<Parameter> originalParameters, boolean recursive)
           
 

Uses of ObjectArray in org.h2.log
 

Methods in org.h2.log that return ObjectArray
 ObjectArray<LogFile> LogSystem.getActiveLogFiles()
          Get all active log files.
 ObjectArray<InDoubtTransaction> LogSystem.getInDoubtTransactions()
          Get the list of in-doubt transactions.
 

Uses of ObjectArray in org.h2.message
 

Methods in org.h2.message with parameters of type ObjectArray
static java.lang.String TraceObject.toString(java.lang.String sql, ObjectArray<? extends ParameterInterface> params)
          INTERNAL
 

Uses of ObjectArray in org.h2.result
 

Methods in org.h2.result with parameters of type ObjectArray
 void ResultExternal.addRows(ObjectArray<Value[]> rows)
          Add a number of rows to the result.
 void ResultTempTable.addRows(ObjectArray<Value[]> rows)
           
 void SortOrder.sort(ObjectArray<Value[]> rows)
          Sort a list of rows.
 

Constructors in org.h2.result with parameters of type ObjectArray
LocalResult(Session session, ObjectArray<Expression> expressionList, int visibleColumnCount)
          Construct a local result object.
 

Uses of ObjectArray in org.h2.schema
 

Methods in org.h2.schema that return ObjectArray
 ObjectArray<SchemaObject> Schema.getAll(int type)
          Get all objects of the given type.
 ObjectArray<Table> Schema.getAllTablesAndViews()
          Get all tables and views.
 

Uses of ObjectArray in org.h2.store
 

Methods in org.h2.store that return ObjectArray
 ObjectArray<InDoubtTransaction> PageStore.getInDoubtTransactions()
          Get the list of in-doubt transaction.
 

Uses of ObjectArray in org.h2.table
 

Methods in org.h2.table that return ObjectArray
 ObjectArray<Session> Table.checkDeadlock(Session session, Session clash, java.util.Set<Session> visited)
          Check if a deadlock occurred.
 ObjectArray<Session> TableData.checkDeadlock(Session session, Session clash, java.util.Set<Session> visited)
           
 ObjectArray<Row> MetaTable.generateRows(Session session, SearchRow first, SearchRow last)
          Generate the data for the given metadata table using the given first and last row filters.
 ObjectArray<DbObject> Table.getChildren()
           
 ObjectArray<Constraint> Table.getConstraints()
           
 ObjectArray<Index> RangeTable.getIndexes()
           
 ObjectArray<Index> TableLink.getIndexes()
           
abstract  ObjectArray<Index> Table.getIndexes()
          Get all indexes for this table.
 ObjectArray<Index> TableView.getIndexes()
           
 ObjectArray<Index> FunctionTable.getIndexes()
           
 ObjectArray<Index> MetaTable.getIndexes()
           
 ObjectArray<Index> TableData.getIndexes()
           
 

Constructors in org.h2.table with parameters of type ObjectArray
TableView(Schema schema, int id, java.lang.String name, java.lang.String querySQL, ObjectArray<Parameter> params, java.lang.String[] columnNames, Session session, boolean recursive)
           
 

Uses of ObjectArray in org.h2.util
 

Methods in org.h2.util that return ObjectArray
 ObjectArray<CacheObject> Cache.getAllChanged()
          Get all objects in the cache that have been changed.
 ObjectArray<CacheObject> CacheLRU.getAllChanged()
           
 ObjectArray<Value> ValueHashMap.keys()
          Get the list of keys.
static
<T> ObjectArray<T>
ObjectArray.newInstance()
          Create a new object with the default initial capacity.
static
<T> ObjectArray<T>
ObjectArray.newInstance(java.util.Collection<T> collection)
          Create a new object with all elements of the given collection.
static
<T> ObjectArray<T>
ObjectArray.newInstance(int capacity)
          Create a new object with the given initial capacity.
static
<T> ObjectArray<T>
ObjectArray.newInstance(T... list)
          Create a new object with the given values.
 ObjectArray<V> ValueHashMap.values()
          Get the list of values.
 

Methods in org.h2.util with parameters of type ObjectArray
 void ObjectArray.addAll(ObjectArray<? extends T> list)
          Add all objects from the given list.
static void CacheObject.sort(ObjectArray<CacheObject> recordList)
          Order the given list of cache objects by position.