Package net.imglib2.img.sparse
Class FloatNtree
- java.lang.Object
-
- net.imglib2.img.sparse.FloatNtree
-
- All Implemented Interfaces:
FloatAccess
,NtreeAccess<java.lang.Float,FloatNtree>
public final class FloatNtree extends java.lang.Object implements FloatAccess, NtreeAccess<java.lang.Float,FloatNtree>
FloatAccess based on aNtree
<Float>
.- Author:
- Tobias Pietzsch
-
-
Constructor Summary
Constructors Constructor Description FloatNtree(long[] dimenions, long[] position, java.lang.Float value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FloatNtree
createInstance(long[] pos)
Ntree<java.lang.Float>
getCurrentStorageNtree()
float
getValue(int index)
void
setValue(int index, float value)
-
-
-
Method Detail
-
getValue
public float getValue(int index)
- Specified by:
getValue
in interfaceFloatAccess
-
setValue
public void setValue(int index, float value)
- Specified by:
setValue
in interfaceFloatAccess
-
getCurrentStorageNtree
public Ntree<java.lang.Float> getCurrentStorageNtree()
- Specified by:
getCurrentStorageNtree
in interfaceNtreeAccess<java.lang.Float,FloatNtree>
-
createInstance
public FloatNtree createInstance(long[] pos)
- Specified by:
createInstance
in interfaceNtreeAccess<java.lang.Float,FloatNtree>
-
-