|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@UML(identifier="CV_GridCoordinates", specification=ISO_19123) public interface GridCoordinates
Holds the set of grid coordinates that specifies the location of the grid point within the grid.
Method Summary | |
---|---|
int |
getCoordinateValue(int i)
Returns the coordinate value at the specified dimension. |
int[] |
getCoordinateValues()
Returns one integer value for each dimension of the grid. |
int |
getDimension()
Returns the number of dimensions. |
void |
setCoordinateValue(int i,
int value)
Sets the coordinate value at the specified dimension (optional operation). |
Methods inherited from interface Cloneable |
---|
clone |
Method Detail |
---|
@Extension int getDimension()
getCoordinateValues().length
. It is
provided for efficienty.
@UML(identifier="coordValues", obligation=MANDATORY, specification=ISO_19123) int[] getCoordinateValues()
Grid.getAxisNames()
. The value of
a single coordinate shall be the number of offsets from the origin of the grid in the direction
of a specific axis.
GridCoordinates
object.@Extension int getCoordinateValue(int i)
getCoordinateValues()[i]
. It is provided for
efficienty.
@Extension void setCoordinateValue(int i, int value) throws UnsupportedOperationException
i
- The index of the value to set.value
- The new value.
UnsupportedOperationException
- if this grid coordinates is not modifiable.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |