public final class HDF5DataBlock<T>
extends java.lang.Object
The pattern for using this class is:
for (HDF5DataBlock<int[]> block : reader.getIntNaturalBlocks(dsName1D)) { float[] naturalBlock = block.getData(); ... work on naturalBlock, use block.getIndex() and block.getOffset() where needed ... }Note: If the size of the data set is not an integer number of blocks, then the last block will be smaller than the natural block size.
public T getData()
public long getOffset()
public long getIndex()