Package net.opengis.gml311
Interface LineStringType
-
- All Superinterfaces:
AbstractCurveType
,AbstractGeometricPrimitiveType
,AbstractGeometryType
,AbstractGMLType
,EObject
,Notifier
- All Known Implementing Classes:
LineStringTypeImpl
public interface LineStringType extends AbstractCurveType
A representation of the model object 'Line String Type'. A LineString is a special curve that consists of a single segment with linear interpolation. It is defined by two or more coordinate tuples, with linear interpolation between them. It is backwards compatible with the LineString of GML 2, GM_LineString of ISO 19107 is implemented by LineStringSegment.The following features are supported:
- See Also:
Gml311Package.getLineStringType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EList<CoordType>
getCoord()
Returns the value of the 'Coord' containment reference list.CoordinatesType
getCoordinates()
Returns the value of the 'Coordinates' containment reference.FeatureMap
getGroup()
Returns the value of the 'Group' attribute list.EList<PointPropertyType>
getPointProperty()
Returns the value of the 'Point Property' containment reference list.EList<PointPropertyType>
getPointRep()
Returns the value of the 'Point Rep' containment reference list.EList<DirectPositionType>
getPos()
Returns the value of the 'Pos' containment reference list.DirectPositionListType
getPosList()
Returns the value of the 'Pos List' containment reference.void
setCoordinates(CoordinatesType value)
Sets the value of the 'Coordinates
' containment reference.void
setPosList(DirectPositionListType value)
Sets the value of the 'Pos List
' containment reference.-
Methods inherited from interface AbstractGeometryType
getAxisLabels, getGid, getSrsDimension, getSrsName, getUomLabels, setAxisLabels, setGid, setSrsDimension, setSrsName, setUomLabels
-
Methods inherited from interface AbstractGMLType
getDescription, getId, getMetaDataProperty, getName, getNameGroup, setDescription, setId
-
-
-
-
Method Detail
-
getGroup
FeatureMap getGroup()
Returns the value of the 'Group' attribute list. The list contents are of typeFeatureMap.Entry
.If the meaning of the 'Group' attribute list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Group' attribute list.
- See Also:
Gml311Package.getLineStringType_Group()
-
getPos
EList<DirectPositionType> getPos()
Returns the value of the 'Pos' containment reference list. The list contents are of typeDirectPositionType
.If the meaning of the 'Pos' containment reference list isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Pos' containment reference list.
- See Also:
Gml311Package.getLineStringType_Pos()
-
getPointProperty
EList<PointPropertyType> getPointProperty()
Returns the value of the 'Point Property' containment reference list. The list contents are of typePointPropertyType
. This property element either references a point via the XLink-attributes or contains the point element. pointProperty is the predefined property which can be used by GML Application Schemas whenever a GML Feature has a property with a value that is substitutable for Point.- Returns:
- the value of the 'Point Property' containment reference list.
- See Also:
Gml311Package.getLineStringType_PointProperty()
-
getPointRep
EList<PointPropertyType> getPointRep()
Returns the value of the 'Point Rep' containment reference list. The list contents are of typePointPropertyType
. Deprecated with GML version 3.1.0. Use "pointProperty" instead. Included for backwards compatibility with GML 3.0.0.- Returns:
- the value of the 'Point Rep' containment reference list.
- See Also:
Gml311Package.getLineStringType_PointRep()
-
getCoord
EList<CoordType> getCoord()
Returns the value of the 'Coord' containment reference list. The list contents are of typeCoordType
. Deprecated with GML version 3.0. Use "pos" instead. The "coord" element is included for backwards compatibility with GML 2.- Returns:
- the value of the 'Coord' containment reference list.
- See Also:
Gml311Package.getLineStringType_Coord()
-
getPosList
DirectPositionListType getPosList()
Returns the value of the 'Pos List' containment reference.If the meaning of the 'Pos List' containment reference isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Pos List' containment reference.
- See Also:
setPosList(DirectPositionListType)
,Gml311Package.getLineStringType_PosList()
-
setPosList
void setPosList(DirectPositionListType value)
Sets the value of the 'Pos List
' containment reference.- Parameters:
value
- the new value of the 'Pos List' containment reference.- See Also:
getPosList()
-
getCoordinates
CoordinatesType getCoordinates()
Returns the value of the 'Coordinates' containment reference. Deprecated with GML version 3.1.0. Use "posList" instead.- Returns:
- the value of the 'Coordinates' containment reference.
- See Also:
setCoordinates(CoordinatesType)
,Gml311Package.getLineStringType_Coordinates()
-
setCoordinates
void setCoordinates(CoordinatesType value)
Sets the value of the 'Coordinates
' containment reference.- Parameters:
value
- the new value of the 'Coordinates' containment reference.- See Also:
getCoordinates()
-
-