Package net.opengis.gml311
Interface CubicSplineType
- 
- All Superinterfaces:
- AbstractCurveSegmentType,- EObject,- Notifier
 - All Known Implementing Classes:
- CubicSplineTypeImpl
 
 public interface CubicSplineType extends AbstractCurveSegmentType A representation of the model object 'Cubic Spline Type'. Cubic splines are similar to line strings in that they are a sequence of segments each with its own defining function. A cubic spline uses the control points and a set of derivative parameters to define a piecewise 3rd degree polynomial interpolation. Unlike line-strings, the parameterization by arc length is not necessarily still a polynomial. The function describing the curve must be C2, that is, have a continuous 1st and 2nd derivative at all points, and pass through the controlPoints in the order given. Between the control points, the curve segment is defined by a cubic polynomial. At each control point, the polynomial changes in such a manner that the 1st and 2nd derivative vectors are the same from either side. The control parameters record must contain vectorAtStart, and vectorAtEnd which are the unit tangent vectors at controlPoint[1] and controlPoint[n] where n = controlPoint.count. Note: only the direction of the vectors is relevant, not their length.The following features are supported: - See Also:
- Gml311Package.getCubicSplineType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description CoordinatesTypegetCoordinates()Returns the value of the 'Coordinates' containment reference.BigIntegergetDegree()Returns the value of the 'Degree' attribute.FeatureMapgetGroup()Returns the value of the 'Group' attribute list.CurveInterpolationTypegetInterpolation()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.DirectPositionListTypegetPosList()Returns the value of the 'Pos List' containment reference.VectorTypegetVectorAtEnd()Returns the value of the 'Vector At End' containment reference.VectorTypegetVectorAtStart()Returns the value of the 'Vector At Start' containment reference.booleanisSetDegree()Returns whether the value of the 'Degree' attribute is set.booleanisSetInterpolation()Returns whether the value of the 'Interpolation' attribute is set.voidsetCoordinates(CoordinatesType value)Sets the value of the 'Coordinates' containment reference.voidsetDegree(BigInteger value)Sets the value of the 'Degree' attribute.voidsetInterpolation(CurveInterpolationType value)Sets the value of the 'Interpolation' attribute.voidsetPosList(DirectPositionListType value)Sets the value of the 'Pos List' containment reference.voidsetVectorAtEnd(VectorType value)Sets the value of the 'Vector At End' containment reference.voidsetVectorAtStart(VectorType value)Sets the value of the 'Vector At Start' containment reference.voidunsetDegree()Unsets the value of the 'Degree' attribute.voidunsetInterpolation()Unsets the value of the 'Interpolation' attribute.- 
Methods inherited from interface AbstractCurveSegmentTypegetNumDerivativeInterior, getNumDerivativesAtEnd, getNumDerivativesAtStart, isSetNumDerivativeInterior, isSetNumDerivativesAtEnd, isSetNumDerivativesAtStart, setNumDerivativeInterior, setNumDerivativesAtEnd, setNumDerivativesAtStart, unsetNumDerivativeInterior, unsetNumDerivativesAtEnd, unsetNumDerivativesAtStart
 
- 
 
- 
- 
- 
Method Detail- 
getGroupFeatureMap 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.getCubicSplineType_Group()
 
 - 
getPosEList<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.getCubicSplineType_Pos()
 
 - 
getPointPropertyEList<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.getCubicSplineType_PointProperty()
 
 - 
getPointRepEList<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.getCubicSplineType_PointRep()
 
 - 
getPosListDirectPositionListType 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.getCubicSplineType_PosList()
 
 - 
setPosListvoid 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()
 
 - 
getCoordinatesCoordinatesType 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.getCubicSplineType_Coordinates()
 
 - 
setCoordinatesvoid setCoordinates(CoordinatesType value) Sets the value of the 'Coordinates' containment reference.- Parameters:
- value- the new value of the 'Coordinates' containment reference.
- See Also:
- getCoordinates()
 
 - 
getVectorAtStartVectorType getVectorAtStart() Returns the value of the 'Vector At Start' containment reference. "vectorAtStart" is the unit tangent vector at the start point of the spline.- Returns:
- the value of the 'Vector At Start' containment reference.
- See Also:
- setVectorAtStart(VectorType),- Gml311Package.getCubicSplineType_VectorAtStart()
 
 - 
setVectorAtStartvoid setVectorAtStart(VectorType value) Sets the value of the 'Vector At Start' containment reference.- Parameters:
- value- the new value of the 'Vector At Start' containment reference.
- See Also:
- getVectorAtStart()
 
 - 
getVectorAtEndVectorType getVectorAtEnd() Returns the value of the 'Vector At End' containment reference. "vectorAtEnd" is the unit tangent vector at the end point of the spline.- Returns:
- the value of the 'Vector At End' containment reference.
- See Also:
- setVectorAtEnd(VectorType),- Gml311Package.getCubicSplineType_VectorAtEnd()
 
 - 
setVectorAtEndvoid setVectorAtEnd(VectorType value) Sets the value of the 'Vector At End' containment reference.- Parameters:
- value- the new value of the 'Vector At End' containment reference.
- See Also:
- getVectorAtEnd()
 
 - 
getDegreeBigInteger getDegree() Returns the value of the 'Degree' attribute. The default value is"3". The degree for a cubic spline is "3".- Returns:
- the value of the 'Degree' attribute.
- See Also:
- isSetDegree(),- unsetDegree(),- setDegree(BigInteger),- Gml311Package.getCubicSplineType_Degree()
 
 - 
setDegreevoid setDegree(BigInteger value) Sets the value of the 'Degree' attribute.- Parameters:
- value- the new value of the 'Degree' attribute.
- See Also:
- isSetDegree(),- unsetDegree(),- getDegree()
 
 - 
unsetDegreevoid unsetDegree() Unsets the value of the 'Degree' attribute.- See Also:
- isSetDegree(),- getDegree(),- setDegree(BigInteger)
 
 - 
isSetDegreeboolean isSetDegree() Returns whether the value of the 'Degree' attribute is set.- Returns:
- whether the value of the 'Degree' attribute is set.
- See Also:
- unsetDegree(),- getDegree(),- setDegree(BigInteger)
 
 - 
getInterpolationCurveInterpolationType getInterpolation() Returns the value of the 'Interpolation' attribute. The default value is"cubicSpline". 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 CubicSpline the interpolation is fixed as "cubicSpline".- Returns:
- the value of the 'Interpolation' attribute.
- See Also:
- CurveInterpolationType,- isSetInterpolation(),- unsetInterpolation(),- setInterpolation(CurveInterpolationType),- Gml311Package.getCubicSplineType_Interpolation()
 
 - 
setInterpolationvoid 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()
 
 - 
unsetInterpolationvoid unsetInterpolation() Unsets the value of the 'Interpolation' attribute.
 - 
isSetInterpolationboolean 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)
 
 
- 
 
-