Interface NtreeAccess<L extends Comparable<L>, A extends NtreeAccess<L,A> >
- All Superinterfaces:
DataAccess
- All Known Implementing Classes:
BooleanNtree, ByteNtree, CharNtree, DoubleNtree, FloatNtree, IntNtree, LongNtree, ShortNtree
public interface NtreeAccess<L extends Comparable<L>, A extends NtreeAccess<L,A>>
extends DataAccess
-
Method Summary
Modifier and TypeMethodDescriptioncreateInstance(long[] pos) default AcreateView(Object updater) Create a copy of the current access without copying the underlying data.
-
Method Details
-
getCurrentStorageNtree
-
createInstance
-
createView
Description copied from interface:DataAccessCreate a copy of the current access without copying the underlying data. Useful for access containers whose instances are not thread safe such asBufferderivatives that have a state. By default,createViewreturnsthisobject instance.- Specified by:
createViewin interfaceDataAccess- Parameters:
updater- Usually an accessor likeCursor. SeeNativeImg.update(Object)- Returns:
- A view of the original access and of the same concrete type.
- See Also:
-