public class TileMatrix
extends java.lang.Object
implements java.io.Serializable
The tile matrix.
| Modifier and Type | Field and Description |
|---|---|
int |
columnCount
Column count.
|
boolean[][] |
novalueFlags
The unvalued identification matrix, the first dimension of the array is the row index, and the second dimension is the column index.
|
int |
rowCount
Row count.
|
TileIndex |
startingIndex
Starting index.
|
| Constructor and Description |
|---|
TileMatrix()
The Constructor.
|
TileMatrix(int colIndex, int rowIndex, int colCount, int pRowCount)
The Constructor.
|
TileMatrix(TileIndex pStartingIndex, int colCount, int pRowCount)
The Constructor.
|
TileMatrix(TileIndex start, TileIndex end)
The Constructor.
|
TileMatrix(TileMatrix tileMatrix)
The Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Determines whether the incoming object is the same as the current object.
|
int |
hashCode()
Returns the hash code of current object.
|
java.lang.String |
toString()
The tile matrix information is exported as a string.
|
public TileIndex startingIndex
Starting index.
public int columnCount
Column count.
public int rowCount
Row count.
public boolean[][] novalueFlags
public TileMatrix()
The Constructor.
public TileMatrix(int colIndex,
int rowIndex,
int colCount,
int pRowCount)
The Constructor.
colIndex - Column index.rowIndex - Row index.colCount - Column count.pRowCount - Row count.public TileMatrix(TileIndex pStartingIndex, int colCount, int pRowCount)
The Constructor.
pStartingIndex - Starting index.colCount - Column count.pRowCount - Row count.public TileMatrix(TileIndex start, TileIndex end)
The Constructor.
start -end -public TileMatrix(TileMatrix tileMatrix)
The Constructor.
tileMatrix - the tile matrix.public boolean equals(java.lang.Object obj)
Determines whether the incoming object is the same as the current object.
equals in class java.lang.Objectobj - The incoming object.public int hashCode()
Returns the hash code of current object.
hashCode in class java.lang.Objectpublic java.lang.String toString()
The tile matrix information is exported as a string.
toString in class java.lang.Object