Package nl.b3p.csw.jaxb.gml
Class ConeType
-
public class ConeType extends AbstractGriddedSurfaceType
A cone is a gridded surface given as a family of conic sections whose control points vary linearly. NOTE! A 5-point ellipse with all defining positions identical is a point. Thus, a truncated elliptical cone can be given as a 2x5 set of control points ((P1, P1, P1, P1, P1), (P2, P3, P4, P5, P6)). P1 is the apex of the cone. P2, P3,P4, P5 and P6 are any five distinct points around the base ellipse of the cone. If the horizontal curves are circles as opposed to ellipses, the a circular cone can be constructed using ((P1, P1, P1),(P2, P3, P4)). The apex most not coinside with the other plane.Java class for ConeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ConeType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractGriddedSurfaceType"> <attribute name="horizontalCurveType" type="{http://www.opengis.net/gml}CurveInterpolationType" fixed="circularArc3Points" /> <attribute name="verticalCurveType" type="{http://www.opengis.net/gml}CurveInterpolationType" fixed="linear" /> </extension> </complexContent> </complexType>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
AbstractGriddedSurfaceType.Row
-
-
Field Summary
Fields Modifier and Type Field Description protected CurveInterpolationTypehorizontalCurveTypeprotected CurveInterpolationTypeverticalCurveType-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
columns, row, rows
-
-
Constructor Summary
Constructors Constructor Description ConeType()Default no-arg constructorConeType(List<AbstractGriddedSurfaceType.Row> row, BigInteger rows, BigInteger columns, CurveInterpolationType horizontalCurveType, CurveInterpolationType verticalCurveType)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CurveInterpolationTypegetHorizontalCurveType()Gets the value of the horizontalCurveType property.CurveInterpolationTypegetVerticalCurveType()Gets the value of the verticalCurveType property.voidsetHorizontalCurveType(CurveInterpolationType value)Sets the value of the horizontalCurveType property.voidsetVerticalCurveType(CurveInterpolationType value)Sets the value of the verticalCurveType property.-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
getColumns, getRow, getRows, setColumns, setRows
-
-
-
-
Field Detail
-
horizontalCurveType
protected CurveInterpolationType horizontalCurveType
-
verticalCurveType
protected CurveInterpolationType verticalCurveType
-
-
Constructor Detail
-
ConeType
public ConeType()
Default no-arg constructor
-
ConeType
public ConeType(List<AbstractGriddedSurfaceType.Row> row, BigInteger rows, BigInteger columns, CurveInterpolationType horizontalCurveType, CurveInterpolationType verticalCurveType)
Fully-initialising value constructor
-
-
Method Detail
-
getHorizontalCurveType
public CurveInterpolationType getHorizontalCurveType()
Gets the value of the horizontalCurveType property.- Returns:
- possible object is
CurveInterpolationType
-
setHorizontalCurveType
public void setHorizontalCurveType(CurveInterpolationType value)
Sets the value of the horizontalCurveType property.- Parameters:
value- allowed object isCurveInterpolationType
-
getVerticalCurveType
public CurveInterpolationType getVerticalCurveType()
Gets the value of the verticalCurveType property.- Returns:
- possible object is
CurveInterpolationType
-
setVerticalCurveType
public void setVerticalCurveType(CurveInterpolationType value)
Sets the value of the verticalCurveType property.- Parameters:
value- allowed object isCurveInterpolationType
-
-