Package org.h2.mvstore
Interface MVMap.MapBuilder<M extends MVMap<K,V>,K,V>
-
- Type Parameters:
M- the map typeK- the key typeV- the value type
- All Known Implementing Classes:
MVMap.BasicBuilder,MVMap.Builder,MVRTreeMap.Builder,TransactionStore.TxMapBuilder
public static interface MVMap.MapBuilder<M extends MVMap<K,V>,K,V>A builder for maps.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Mcreate(MVStore store, java.util.Map<java.lang.String,java.lang.Object> config)Create a new map of the given type.DataType<K>getKeyType()DataType<V>getValueType()voidsetKeyType(DataType<? super K> dataType)voidsetValueType(DataType<? super V> dataType)
-