Package | Description |
---|---|
org.h2.mvstore |
A persistent storage for tree maps.
|
org.h2.mvstore.db |
Helper classes to use the MVStore in the H2 database.
|
org.h2.mvstore.rtree |
An R-tree implementation
|
org.h2.mvstore.type |
Data types and serialization / deserialization
|
Modifier and Type | Field and Description |
---|---|
protected DataType |
MVMapConcurrent.Builder.keyType |
protected DataType |
MVMap.Builder.keyType |
protected DataType |
MVMapConcurrent.Builder.valueType |
protected DataType |
MVMap.Builder.valueType |
Modifier and Type | Method and Description |
---|---|
DataType |
MVMap.getKeyType()
Get the key type.
|
DataType |
MVMap.Builder.getKeyType() |
DataType |
MVMap.getValueType()
Get the value type.
|
DataType |
MVMap.Builder.getValueType() |
Modifier and Type | Method and Description |
---|---|
MVMapConcurrent.Builder<K,V> |
MVMapConcurrent.Builder.keyType(DataType keyType)
Set the key data type.
|
MVMap.Builder<K,V> |
MVMap.Builder.keyType(DataType keyType)
Set the key data type.
|
MVMapConcurrent.Builder<K,V> |
MVMapConcurrent.Builder.valueType(DataType valueType)
Set the key data type.
|
MVMap.Builder<K,V> |
MVMap.Builder.valueType(DataType valueType)
Set the value data type.
|
Constructor and Description |
---|
MVMap(DataType keyType,
DataType valueType) |
MVMapConcurrent(DataType keyType,
DataType valueType) |
Modifier and Type | Class and Description |
---|---|
static class |
TransactionStore.ArrayType
A data type that contains an array of objects with the specified data
types.
|
static class |
TransactionStore.VersionedValueType
The value type for a versioned value.
|
class |
ValueDataType
A row type.
|
Modifier and Type | Method and Description |
---|---|
DataType |
TransactionStore.TransactionMap.getKeyType() |
Modifier and Type | Method and Description |
---|---|
<K,V> TransactionStore.TransactionMap<K,V> |
TransactionStore.Transaction.openMap(String name,
DataType keyType,
DataType valueType)
Open the map to store the data.
|
Constructor and Description |
---|
TransactionStore(MVStore store,
DataType dataType)
Create a new transaction store.
|
Modifier and Type | Class and Description |
---|---|
class |
SpatialDataType
A spatial data type.
|
Modifier and Type | Method and Description |
---|---|
static <V> MVRTreeMap<V> |
MVRTreeMap.create(int dimensions,
DataType valueType)
Create a new map with the given dimensions and value type.
|
MVRTreeMap.Builder<V> |
MVRTreeMap.Builder.valueType(DataType valueType)
Set the key data type.
|
Constructor and Description |
---|
MVRTreeMap(int dimensions,
DataType valueType) |
Modifier and Type | Class and Description |
---|---|
class |
ObjectDataType
A data type implementation for the most common data types, including
serializable objects.
|
class |
StringDataType
A string type.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.