// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * 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. * * <p>Java-Klasse für ConeType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConeType") public class ConeType extends AbstractGriddedSurfaceType { @XmlAttribute(name = "horizontalCurveType") protected CurveInterpolationType horizontalCurveType; @XmlAttribute(name = "verticalCurveType") protected CurveInterpolationType verticalCurveType; /** * Ruft den Wert der horizontalCurveType-Eigenschaft ab. * * @return * possible object is * {@link CurveInterpolationType } * */ public CurveInterpolationType getHorizontalCurveType() { if (horizontalCurveType == null) { return CurveInterpolationType.CIRCULAR_ARC_3_POINTS; } else { return horizontalCurveType; } } /** * Legt den Wert der horizontalCurveType-Eigenschaft fest. * * @param value * allowed object is * {@link CurveInterpolationType } * */ public void setHorizontalCurveType(CurveInterpolationType value) { this.horizontalCurveType = value; } public boolean isSetHorizontalCurveType() { return (this.horizontalCurveType!= null); } /** * Ruft den Wert der verticalCurveType-Eigenschaft ab. * * @return * possible object is * {@link CurveInterpolationType } * */ public CurveInterpolationType getVerticalCurveType() { if (verticalCurveType == null) { return CurveInterpolationType.LINEAR; } else { return verticalCurveType; } } /** * Legt den Wert der verticalCurveType-Eigenschaft fest. * * @param value * allowed object is * {@link CurveInterpolationType } * */ public void setVerticalCurveType(CurveInterpolationType value) { this.verticalCurveType = value; } public boolean isSetVerticalCurveType() { return (this.verticalCurveType!= null); } }