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 Details

    • getCurrentStorageNtree

      Ntree<L> getCurrentStorageNtree()
    • createInstance

      A createInstance(long[] pos)
    • createView

      default A createView(Object updater)
      Description copied from interface: DataAccess
      Create a copy of the current access without copying the underlying data. Useful for access containers whose instances are not thread safe such as Buffer derivatives that have a state. By default, createView returns this object instance.
      Specified by:
      createView in interface DataAccess
      Parameters:
      updater - Usually an accessor like Cursor. See NativeImg.update(Object)
      Returns:
      A view of the original access and of the same concrete type.
      See Also: