Uses of Class
org.h2.value.ValueRow
-
Packages that use ValueRow Package Description org.h2.command.query Contains queries.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.result Implementation of row and internal result sets.org.h2.value Data type and value implementations. -
-
Uses of ValueRow in org.h2.command.query
Fields in org.h2.command.query declared as ValueRow Modifier and Type Field Description private ValueRow
SelectGroups.Grouped. currentGroupsKey
Key into groupByData that produces currentGroupByExprData.Fields in org.h2.command.query with type parameters of type ValueRow Modifier and Type Field Description private java.util.Iterator<java.util.Map.Entry<ValueRow,java.lang.Object[]>>
SelectGroups.Grouped. cursor
Cursor forSelectGroups.Grouped.next()
method.private java.util.TreeMap<ValueRow,java.lang.Object[]>
SelectGroups.Grouped. groupByData
Map of group-by key to group-by expression data e.g.Methods in org.h2.command.query that return ValueRow Modifier and Type Method Description ValueRow
SelectGroups.Grouped. next()
abstract ValueRow
SelectGroups. next()
Returns the key of the next group.ValueRow
SelectGroups.Plain. next()
-
Uses of ValueRow in org.h2.mvstore.db
Fields in org.h2.mvstore.db with type parameters of type ValueRow Modifier and Type Field Description private Cursor<java.lang.Long,ValueRow>
MVPlainTempResult. cursor
Cursor for theMVPlainTempResult.next()
method.private Cursor<ValueRow,java.lang.Long>
MVSortedTempResult. cursor
Cursor for theMVSortedTempResult.next()
method.private MVMap<ValueRow,Value>
MVSortedTempResult. index
Optional index.private MVMap<java.lang.Long,ValueRow>
MVPlainTempResult. map
Map with identities of rows as keys rows as values.private MVMap<ValueRow,java.lang.Long>
MVSortedTempResult. map
Map with rows as keys and counts of duplicate rows as values.Methods in org.h2.mvstore.db that return ValueRow Modifier and Type Method Description private ValueRow
MVSortedTempResult. getKey(Value[] values)
Reorder values if required and convert them intoValueRow
. -
Uses of ValueRow in org.h2.result
Fields in org.h2.result with type parameters of type ValueRow Modifier and Type Field Description private java.util.TreeMap<ValueRow,Value[]>
LocalResult. distinctRows
Methods in org.h2.result that return ValueRow Modifier and Type Method Description private ValueRow
LocalResult. getDistinctRow(Value[] values)
-
Uses of ValueRow in org.h2.value
Fields in org.h2.value declared as ValueRow Modifier and Type Field Description static ValueRow
ValueRow. EMPTY
Empty row.Methods in org.h2.value that return ValueRow Modifier and Type Method Description ValueRow
Value. convertToAnyRow()
Convert this value to any ROW data type.static ValueRow
ValueRow. get(ExtTypeInfoRow extTypeInfo, Value[] list)
Get or create a typed row value for the given value array.static ValueRow
ValueRow. get(TypeInfo typeInfo, Value[] list)
Get or create a typed row value for the given value array.static ValueRow
ValueRow. get(Value[] list)
Get or create a row value for the given value array.
-