Interface ILcdGML3Coordinates
public interface ILcdGML3Coordinates
Deprecated.
Interface for the
gml:CoordinatesType
type.
Tables or arrays of tuples. May be used for text-encoding of values from a table.
(GML Specification, v3.1.0, paragraph 9.1.3.5)-
Method Summary
Modifier and TypeMethodDescriptiongetCoordinate
(int aPositionIndex, int aCoordinateIndex) Deprecated.Returns the coordinate value (can be a text or a value) at the given position and coordinate index.int
Deprecated.Returns the number of coordinates (table columns) present in this coordinates.Deprecated.Returns the value of this coordinates, as one String.int
Deprecated.Returns the number of positions (rows or tuples) present in this coordinates.void
setCoordinates
(String aCoordinates) Deprecated.Sets the value of this coordinates, as one String.
-
Method Details
-
getCoordinateCount
int getCoordinateCount()Deprecated.Returns the number of coordinates (table columns) present in this coordinates.- Returns:
- he number of coordinates present in this coordinates.
-
getPositionCount
int getPositionCount()Deprecated.Returns the number of positions (rows or tuples) present in this coordinates.- Returns:
- the number of positions present in this coordinates.
-
getCoordinate
Deprecated.Returns the coordinate value (can be a text or a value) at the given position and coordinate index.- Parameters:
aPositionIndex
- the position index of the coordinate to be returned.aCoordinateIndex
- the coordinate index of the coordinate to be returned.- Returns:
- the coordinate at the given position and coordinate index.
- Throws:
IndexOutOfBoundsException
- ifaPositionIndex < 0 || aPositionIndex >= getPositionCount() || aCoordinateIndex < 0 || aCoordinateIndex >= getCoordinateCount()
-
getCoordinates
String getCoordinates()Deprecated.Returns the value of this coordinates, as one String.- Returns:
- the value of this coordinates, as one String.
-
setCoordinates
Deprecated.Sets the value of this coordinates, as one String.- Parameters:
aCoordinates
-
-
com.luciad.format.gml3.*
packages are replaced by new decoders and encoders in the packagescom.luciad.format.gml2.xml
,com.luciad.format.gml31.xml
andcom.luciad.format.gml32.xml
.