Package org.h2.store.fs.niomem
Class FileNioMemData.CompressItem
- java.lang.Object
-
- org.h2.store.fs.niomem.FileNioMemData.CompressItem
-
- Enclosing class:
- FileNioMemData
static class FileNioMemData.CompressItem extends java.lang.Object
Represents a compressed item.
-
-
Field Summary
Fields Modifier and Type Field Description FileNioMemData
data
The file data.int
page
The page to compress.
-
Constructor Summary
Constructors Constructor Description CompressItem(FileNioMemData data, int page)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
-
-
-
Field Detail
-
data
public final FileNioMemData data
The file data.
-
page
public final int page
The page to compress.
-
-
Constructor Detail
-
CompressItem
public CompressItem(FileNioMemData data, int page)
-
-