Package nl.b3p.csw.jaxb.gml
Class CylinderType
-
public class CylinderType extends AbstractGriddedSurfaceType
A cylinder is a gridded surface given as a family of circles whose positions vary along a set of parallel lines, keeping the cross sectional horizontal curves of a constant shape. NOTE! Given the same working assumptions as in the previous note, a Cylinder can be given by two circles, giving us the control points of the form ((P1, P2, P3),(P4, P5, P6)).Java class for CylinderType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CylinderType"> <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 CylinderType()Default no-arg constructorCylinderType(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
-
CylinderType
public CylinderType()
Default no-arg constructor
-
CylinderType
public CylinderType(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
-
-