// // 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 java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * Curve segment defines a homogeneous segment of a curve. * * <p>Java-Klasse für AbstractCurveSegmentType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="AbstractCurveSegmentType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * </sequence> * <attribute name="numDerivativesAtStart" type="{http://www.w3.org/2001/XMLSchema}integer" default="0" /> * <attribute name="numDerivativesAtEnd" type="{http://www.w3.org/2001/XMLSchema}integer" default="0" /> * <attribute name="numDerivativeInterior" type="{http://www.w3.org/2001/XMLSchema}integer" default="0" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractCurveSegmentType") @XmlSeeAlso({ BSplineType.class, ClothoidType.class, ArcStringType.class, ArcByCenterPointType.class, LineStringSegmentType.class, GeodesicStringType.class, OffsetCurveType.class, ArcStringByBulgeType.class, CubicSplineType.class }) public abstract class AbstractCurveSegmentType { @XmlAttribute(name = "numDerivativesAtStart") protected BigInteger numDerivativesAtStart; @XmlAttribute(name = "numDerivativesAtEnd") protected BigInteger numDerivativesAtEnd; @XmlAttribute(name = "numDerivativeInterior") protected BigInteger numDerivativeInterior; /** * Ruft den Wert der numDerivativesAtStart-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumDerivativesAtStart() { if (numDerivativesAtStart == null) { return new BigInteger("0"); } else { return numDerivativesAtStart; } } /** * Legt den Wert der numDerivativesAtStart-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumDerivativesAtStart(BigInteger value) { this.numDerivativesAtStart = value; } public boolean isSetNumDerivativesAtStart() { return (this.numDerivativesAtStart!= null); } /** * Ruft den Wert der numDerivativesAtEnd-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumDerivativesAtEnd() { if (numDerivativesAtEnd == null) { return new BigInteger("0"); } else { return numDerivativesAtEnd; } } /** * Legt den Wert der numDerivativesAtEnd-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumDerivativesAtEnd(BigInteger value) { this.numDerivativesAtEnd = value; } public boolean isSetNumDerivativesAtEnd() { return (this.numDerivativesAtEnd!= null); } /** * Ruft den Wert der numDerivativeInterior-Eigenschaft ab. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getNumDerivativeInterior() { if (numDerivativeInterior == null) { return new BigInteger("0"); } else { return numDerivativeInterior; } } /** * Legt den Wert der numDerivativeInterior-Eigenschaft fest. * * @param value * allowed object is * {@link BigInteger } * */ public void setNumDerivativeInterior(BigInteger value) { this.numDerivativeInterior = value; } public boolean isSetNumDerivativeInterior() { return (this.numDerivativeInterior!= null); } }