Class Index
java.lang.Object
net.imglib2.type.Index
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
i
private int i
-
-
Constructor Details
-
Index
public Index()
-
-
Method Details
-
get
public int get()Get the index.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container, and byNativeTypes to determine the offset into the underlying primitive array, where the value of the type is stored. -
set
public void set(int index) Set the index toindex.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container. -
inc
public void inc()Increment the index.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container. -
inc
public void inc(int increment) Increase the index bydecrementsteps.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container. -
dec
public void dec()Decrement the index.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container. -
dec
public void dec(int decrement) Decrease the index bydecrementsteps.This is used by accessors (e.g., a
Cursor) to positionNativeTypes in the container.
-