public interface TwoDimensionalCharReadAccess extends TwoDimensionalReadAccess<java.lang.Character>
Modifier and Type | Interface and Description |
---|---|
static class |
TwoDimensionalCharReadAccess.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 TwoDimensionalCharReadAccess |
EMPTY
Empty 2dimensional char read access.
|
Modifier and Type | Method and Description |
---|---|
default TwoDimensionalCharReadAccess.Base |
asBase()
Get a view of this 2-dimensional access which provides useful defaults for standard object methods.
|
default java.lang.Character |
getElementAt(int ix,
int iy)
Get the element at the given indexes.
|
char |
getValueAt(int ix,
int iy)
Get the value at the given indexes.
|
static TwoDimensionalCharReadAccess |
singleton(char singleElement)
Get a 2dimensional char read access for a single element.
|
default OneDimensionalCharReadAccess |
subAtX(int ix)
Get a 1-dimensional view of the row at the given X index.
|
default OneDimensionalCharReadAccess |
subAtY(int iy)
Get a 1-dimensional view of the column at the given X index.
|
default TwoDimensionalCharReadAccess |
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 TwoDimensionalCharReadAccess EMPTY
char getValueAt(int ix, int iy)
ix
- X indexiy
- Y index@NotNull default java.lang.Character getElementAt(int ix, int iy)
TwoDimensionalReadAccess
getElementAt
in interface TwoDimensionalReadAccess<java.lang.Character>
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 OneDimensionalCharReadAccess subAtX(int ix)
TwoDimensionalReadAccess
subAtX
in interface TwoDimensionalReadAccess<java.lang.Character>
ix
- X indexix
@NotNull default OneDimensionalCharReadAccess subAtY(int iy)
TwoDimensionalReadAccess
subAtY
in interface TwoDimensionalReadAccess<java.lang.Character>
iy
- Y indexiy
@NotNull default TwoDimensionalCharReadAccess transposed()
TwoDimensionalReadAccess
transposed
in interface TwoDimensionalReadAccess<java.lang.Character>
@NotNull default TwoDimensionalCharReadAccess.Base asBase()
asBase
in interface TwoDimensionalReadAccess<java.lang.Character>
@NotNull static TwoDimensionalCharReadAccess singleton(char singleElement)
singleton
in interface TwoDimensionalReadAccess<java.lang.Character>
singleElement
- single element