public interface TwoDimensionalIntReadAccess extends TwoDimensionalReadAccess<java.lang.Integer>
Modifier and Type | Interface and Description |
---|---|
static class |
TwoDimensionalIntReadAccess.Base
Base class implementing this interface which provides useful
default methods for
Object.toString() , Object.equals(Object) ,
and Object.hashCode() . |
Modifier and Type | Field and Description |
---|---|
static TwoDimensionalIntReadAccess |
EMPTY
Empty 2dimensional int read access.
|
Modifier and Type | Method and Description |
---|---|
default TwoDimensionalIntReadAccess.Base |
asBase()
Get a view of this 2-dimensional access which provides useful defaults for standard object methods.
|
default java.lang.Integer |
getElementAt(int ix,
int iy)
Get the element at the given indexes.
|
int |
getValueAt(int ix,
int iy)
Get the value at the given indexes.
|
static TwoDimensionalIntReadAccess |
singleton(int singleElement)
Get a 2dimensional int read access for a single element.
|
default OneDimensionalIntReadAccess |
subAtX(int ix)
Get a 1-dimensional view of the row at the given X index.
|
default OneDimensionalIntReadAccess |
subAtY(int iy)
Get a 1-dimensional view of the column at the given X index.
|
default TwoDimensionalIntReadAccess |
transposed()
Get a transposed view of this 2-dimensional read access.
|
empty, equal, getElement, getNumDimensions, getNumElements, getSize, getSizes, hash, sizeX, sizeY, toString, view, visitAll, visitAll, xIterable, xIterator, yIterable, yIterator
empty, linearized
static final TwoDimensionalIntReadAccess EMPTY
int getValueAt(int ix, int iy)
ix
- X indexiy
- Y index@NotNull default java.lang.Integer getElementAt(int ix, int iy)
TwoDimensionalReadAccess
getElementAt
in interface TwoDimensionalReadAccess<java.lang.Integer>
ix
- index in X direction from 0
(included) to TwoDimensionalReadAccess.sizeX()
(excluded)iy
- index in Y direction from 0
(included) to TwoDimensionalReadAccess.sizeY()
(excluded)@NotNull default OneDimensionalIntReadAccess subAtX(int ix)
TwoDimensionalReadAccess
subAtX
in interface TwoDimensionalReadAccess<java.lang.Integer>
ix
- X indexix
@NotNull default OneDimensionalIntReadAccess subAtY(int iy)
TwoDimensionalReadAccess
subAtY
in interface TwoDimensionalReadAccess<java.lang.Integer>
iy
- Y indexiy
@NotNull default TwoDimensionalIntReadAccess transposed()
TwoDimensionalReadAccess
transposed
in interface TwoDimensionalReadAccess<java.lang.Integer>
@NotNull default TwoDimensionalIntReadAccess.Base asBase()
asBase
in interface TwoDimensionalReadAccess<java.lang.Integer>
@NotNull static TwoDimensionalIntReadAccess singleton(int singleElement)
singleton
in interface TwoDimensionalReadAccess<java.lang.Integer>
singleElement
- single element