Package org.h2.mvstore.db
Class LobStorageMap.BlobMeta.Type
- java.lang.Object
-
- org.h2.mvstore.type.BasicDataType<LobStorageMap.BlobMeta>
-
- org.h2.mvstore.db.LobStorageMap.BlobMeta.Type
-
- All Implemented Interfaces:
java.util.Comparator<LobStorageMap.BlobMeta>,DataType<LobStorageMap.BlobMeta>
- Enclosing class:
- LobStorageMap.BlobMeta
public static final class LobStorageMap.BlobMeta.Type extends BasicDataType<LobStorageMap.BlobMeta>
-
-
Field Summary
Fields Modifier and Type Field Description static LobStorageMap.BlobMeta.TypeINSTANCE
-
Constructor Summary
Constructors Modifier Constructor Description privateType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LobStorageMap.BlobMeta[]createStorage(int size)Create storage object of array type to hold valuesintgetMemory(LobStorageMap.BlobMeta blobMeta)Calculates the amount of used memory in bytes.LobStorageMap.BlobMetaread(java.nio.ByteBuffer buff)Read an object.voidwrite(WriteBuffer buff, LobStorageMap.BlobMeta blobMeta)Write an object.-
Methods inherited from class org.h2.mvstore.type.BasicDataType
binarySearch, cast, compare, equals, hashCode, isMemoryEstimationAllowed, read, write
-
-
-
-
Field Detail
-
INSTANCE
public static final LobStorageMap.BlobMeta.Type INSTANCE
-
-
Method Detail
-
getMemory
public int getMemory(LobStorageMap.BlobMeta blobMeta)
Description copied from interface:DataTypeCalculates the amount of used memory in bytes.- Specified by:
getMemoryin interfaceDataType<LobStorageMap.BlobMeta>- Specified by:
getMemoryin classBasicDataType<LobStorageMap.BlobMeta>- Parameters:
blobMeta- the object- Returns:
- the used memory
-
write
public void write(WriteBuffer buff, LobStorageMap.BlobMeta blobMeta)
Description copied from interface:DataTypeWrite an object.- Specified by:
writein interfaceDataType<LobStorageMap.BlobMeta>- Specified by:
writein classBasicDataType<LobStorageMap.BlobMeta>- Parameters:
buff- the target bufferblobMeta- the value
-
read
public LobStorageMap.BlobMeta read(java.nio.ByteBuffer buff)
Description copied from interface:DataTypeRead an object.- Specified by:
readin interfaceDataType<LobStorageMap.BlobMeta>- Specified by:
readin classBasicDataType<LobStorageMap.BlobMeta>- Parameters:
buff- the source buffer- Returns:
- the object
-
createStorage
public LobStorageMap.BlobMeta[] createStorage(int size)
Description copied from interface:DataTypeCreate storage object of array type to hold values- Parameters:
size- number of values to hold- Returns:
- storage object
-
-