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 ValueRowSelectGroups.Grouped. currentGroupsKeyKey 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. cursorCursor forSelectGroups.Grouped.next()method.private java.util.TreeMap<ValueRow,java.lang.Object[]>SelectGroups.Grouped. groupByDataMap 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 ValueRowSelectGroups.Grouped. next()abstract ValueRowSelectGroups. next()Returns the key of the next group.ValueRowSelectGroups.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. cursorCursor for theMVPlainTempResult.next()method.private Cursor<ValueRow,java.lang.Long>MVSortedTempResult. cursorCursor for theMVSortedTempResult.next()method.private MVMap<ValueRow,Value>MVSortedTempResult. indexOptional index.private MVMap<java.lang.Long,ValueRow>MVPlainTempResult. mapMap with identities of rows as keys rows as values.private MVMap<ValueRow,java.lang.Long>MVSortedTempResult. mapMap 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 ValueRowMVSortedTempResult. 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. distinctRowsMethods in org.h2.result that return ValueRow Modifier and Type Method Description private ValueRowLocalResult. getDistinctRow(Value[] values) -
Uses of ValueRow in org.h2.value
Fields in org.h2.value declared as ValueRow Modifier and Type Field Description static ValueRowValueRow. EMPTYEmpty row.Methods in org.h2.value that return ValueRow Modifier and Type Method Description ValueRowValue. convertToAnyRow()Convert this value to any ROW data type.static ValueRowValueRow. get(ExtTypeInfoRow extTypeInfo, Value[] list)Get or create a typed row value for the given value array.static ValueRowValueRow. get(TypeInfo typeInfo, Value[] list)Get or create a typed row value for the given value array.static ValueRowValueRow. get(Value[] list)Get or create a row value for the given value array.
-