Package net.opengis.gml311
Interface LineStringSegmentType
-
- All Superinterfaces:
AbstractCurveSegmentType
,EObject
,Notifier
- All Known Implementing Classes:
LineStringSegmentTypeImpl
public interface LineStringSegmentType extends AbstractCurveSegmentType
A representation of the model object 'Line String Segment Type'. A LineStringSegment is a curve segment that is defined by two or more coordinate tuples, with linear interpolation between them. Note: LineStringSegment implements GM_LineString of ISO 19107.The following features are supported:
- See Also:
Gml311Package.getLineStringSegmentType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoordinatesType
getCoordinates()
Returns the value of the 'Coordinates' containment reference.FeatureMap
getGroup()
Returns the value of the 'Group' attribute list.CurveInterpolationType
getInterpolation()
Returns the value of the 'Interpolation' attribute.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.boolean
isSetInterpolation()
Returns whether the value of the 'Interpolation
' attribute is set.void
setCoordinates(CoordinatesType value)
Sets the value of the 'Coordinates
' containment reference.void
setInterpolation(CurveInterpolationType value)
Sets the value of the 'Interpolation
' attribute.void
setPosList(DirectPositionListType value)
Sets the value of the 'Pos List
' containment reference.void
unsetInterpolation()
Unsets the value of the 'Interpolation
' attribute.-
Methods inherited from interface AbstractCurveSegmentType
getNumDerivativeInterior, getNumDerivativesAtEnd, getNumDerivativesAtStart, isSetNumDerivativeInterior, isSetNumDerivativesAtEnd, isSetNumDerivativesAtStart, setNumDerivativeInterior, setNumDerivativesAtEnd, setNumDerivativesAtStart, unsetNumDerivativeInterior, unsetNumDerivativesAtEnd, unsetNumDerivativesAtStart
-
-
-
-
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.getLineStringSegmentType_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.getLineStringSegmentType_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.getLineStringSegmentType_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.getLineStringSegmentType_PointRep()
-
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.getLineStringSegmentType_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.getLineStringSegmentType_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()
-
getInterpolation
CurveInterpolationType getInterpolation()
Returns the value of the 'Interpolation' attribute. The default value is"linear"
. The literals are from the enumerationCurveInterpolationType
. The attribute "interpolation" specifies the curve interpolation mechanism used for this segment. This mechanism uses the control points and control parameters to determine the position of this curve segment. For a LineStringSegment the interpolation is fixed as "linear".- Returns:
- the value of the 'Interpolation' attribute.
- See Also:
CurveInterpolationType
,isSetInterpolation()
,unsetInterpolation()
,setInterpolation(CurveInterpolationType)
,Gml311Package.getLineStringSegmentType_Interpolation()
-
setInterpolation
void setInterpolation(CurveInterpolationType value)
Sets the value of the 'Interpolation
' attribute.- Parameters:
value
- the new value of the 'Interpolation' attribute.- See Also:
CurveInterpolationType
,isSetInterpolation()
,unsetInterpolation()
,getInterpolation()
-
unsetInterpolation
void unsetInterpolation()
Unsets the value of the 'Interpolation
' attribute.
-
isSetInterpolation
boolean isSetInterpolation()
Returns whether the value of the 'Interpolation
' attribute is set.- Returns:
- whether the value of the 'Interpolation' attribute is set.
- See Also:
unsetInterpolation()
,getInterpolation()
,setInterpolation(CurveInterpolationType)
-
-