Interface NtreeAccess<L extends java.lang.Comparable<L>,​A extends NtreeAccess<L,​A>>

    • Method Detail

      • getCurrentStorageNtree

        Ntree<L> getCurrentStorageNtree()
      • createInstance

        A createInstance​(long[] pos)
      • createView

        default A createView​(java.lang.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:
        NativeImg.update(Object), NativeType.updateContainer(Object)