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