Uses of Class
org.h2.result.RowFactory
-
Packages that use RowFactory Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.index Various table index implementations, as well as cursors to navigate in an index.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.table Classes related to a table and table meta data. -
-
Uses of RowFactory in org.h2.engine
Fields in org.h2.engine declared as RowFactory Modifier and Type Field Description private RowFactory
Database. rowFactory
Methods in org.h2.engine that return RowFactory Modifier and Type Method Description RowFactory
Database. getRowFactory()
Methods in org.h2.engine with parameters of type RowFactory Modifier and Type Method Description void
Database. setRowFactory(RowFactory rowFactory)
-
Uses of RowFactory in org.h2.index
Fields in org.h2.index declared as RowFactory Modifier and Type Field Description private RowFactory
Index. rowFactory
private RowFactory
Index. uniqueRowFactory
Methods in org.h2.index that return RowFactory Modifier and Type Method Description RowFactory
Index. getRowFactory()
RowFactory
Index. getUniqueRowFactory()
-
Uses of RowFactory in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as RowFactory Modifier and Type Field Description private RowFactory
ValueDataType. rowFactory
Methods in org.h2.mvstore.db that return RowFactory Modifier and Type Method Description RowFactory
MVDelegateIndex. getRowFactory()
RowFactory
RowDataType. getRowFactory()
RowFactory
ValueDataType. getRowFactory()
Methods in org.h2.mvstore.db with parameters of type RowFactory Modifier and Type Method Description void
RowDataType. setRowFactory(RowFactory rowFactory)
void
ValueDataType. setRowFactory(RowFactory rowFactory)
-
Uses of RowFactory in org.h2.result
Subclasses of RowFactory in org.h2.result Modifier and Type Class Description static class
RowFactory.DefaultRowFactory
Default implementation of row factory.Fields in org.h2.result declared as RowFactory Modifier and Type Field Description (package private) static RowFactory
RowFactory.Holder. EFFECTIVE
Methods in org.h2.result that return RowFactory Modifier and Type Method Description RowFactory
RowFactory. createRowFactory(CastDataProvider provider, CompareMode compareMode, DataHandler handler, Typed[] columns, IndexColumn[] indexColumns, boolean storeKeys)
Create a new row factory.RowFactory
RowFactory.DefaultRowFactory. createRowFactory(CastDataProvider provider, CompareMode compareMode, DataHandler handler, int[] sortTypes, int[] indexes, TypeInfo[] columnTypes, int columnCount, boolean storeKeys)
Create a new row factory.RowFactory
RowFactory.DefaultRowFactory. createRowFactory(CastDataProvider provider, CompareMode compareMode, DataHandler handler, Typed[] columns, IndexColumn[] indexColumns, boolean storeKeys)
static RowFactory
RowFactory. getRowFactory()
-
Uses of RowFactory in org.h2.table
Fields in org.h2.table declared as RowFactory Modifier and Type Field Description private RowFactory
Table. rowFactory
Methods in org.h2.table that return RowFactory Modifier and Type Method Description RowFactory
Table. getRowFactory()
-