Interface DataAccess

    • Method Detail

      • createView

        default DataAccess createView​(java.lang.Object o)
        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.
        Parameters:
        o - 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)