|
||||||||||
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 |
loadCoordinateValues(int[] vals)
This is a compromise method which loads the values of this GridCoordinates implementation into the array provided by the user. |
void |
setCoordinateValue(int i,
int value)
Sets the coordinate value at the specified dimension. |
Methods inherited from interface Cloneable |
---|
clone |
Method Detail |
---|
@Extension int getDimension()
getCoordinateValues().length
. It is
provided for efficienty.
@Extension int getCoordinateValue(int i)
getCoordinateValues()[i]
. It is provided for
efficienty.
@Extension void setCoordinateValue(int i, int value)
getCoordinateValues()[i] = value
. 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.DirectPosition
which states@Extension void loadCoordinateValues(int[] vals)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |