/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2012, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.gml.xml.v321; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CoordinateSystemAxisType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CoordinateSystemAxisType"> * <complexContent> * <extension base="{http://www.opengis.net/gml/3.2}IdentifiedObjectType"> * <sequence> * <element ref="{http://www.opengis.net/gml/3.2}axisAbbrev"/> * <element ref="{http://www.opengis.net/gml/3.2}axisDirection"/> * <element ref="{http://www.opengis.net/gml/3.2}minimumValue" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml/3.2}maximumValue" minOccurs="0"/> * <element ref="{http://www.opengis.net/gml/3.2}rangeMeaning" minOccurs="0"/> * </sequence> * <attribute name="uom" use="required" type="{http://www.opengis.net/gml/3.2}UomIdentifier" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(propOrder = { "axisAbbrev", "axisDirection", "minimumValue", "maximumValue", "rangeMeaning" }) public class CoordinateSystemAxisType extends IdentifiedObjectType { @XmlElement(required = true) private CodeType axisAbbrev; @XmlElement(required = true) private CodeWithAuthorityType axisDirection; private Double minimumValue; private Double maximumValue; private CodeWithAuthorityType rangeMeaning; @XmlAttribute(required = true) private String uom; /** * Gets the value of the axisAbbrev property. * * @return * possible object is * {@link CodeType } * */ public CodeType getAxisAbbrev() { return axisAbbrev; } /** * Sets the value of the axisAbbrev property. * * @param value * allowed object is * {@link CodeType } * */ public void setAxisAbbrev(CodeType value) { this.axisAbbrev = value; } /** * Gets the value of the axisDirection property. * * @return * possible object is * {@link CodeWithAuthorityType } * */ public CodeWithAuthorityType getAxisDirection() { return axisDirection; } /** * Sets the value of the axisDirection property. * * @param value * allowed object is * {@link CodeWithAuthorityType } * */ public void setAxisDirection(CodeWithAuthorityType value) { this.axisDirection = value; } /** * Gets the value of the minimumValue property. * * @return * possible object is * {@link Double } * */ public Double getMinimumValue() { return minimumValue; } /** * Sets the value of the minimumValue property. * * @param value * allowed object is * {@link Double } * */ public void setMinimumValue(Double value) { this.minimumValue = value; } /** * Gets the value of the maximumValue property. * * @return * possible object is * {@link Double } * */ public Double getMaximumValue() { return maximumValue; } /** * Sets the value of the maximumValue property. * * @param value * allowed object is * {@link Double } * */ public void setMaximumValue(Double value) { this.maximumValue = value; } /** * Gets the value of the rangeMeaning property. * * @return * possible object is * {@link CodeWithAuthorityType } * */ public CodeWithAuthorityType getRangeMeaning() { return rangeMeaning; } /** * Sets the value of the rangeMeaning property. * * @param value * allowed object is * {@link CodeWithAuthorityType } * */ public void setRangeMeaning(CodeWithAuthorityType value) { this.rangeMeaning = value; } /** * Gets the value of the uom property. * * @return * possible object is * {@link String } * */ public String getUom() { return uom; } /** * Sets the value of the uom property. * * @param value * allowed object is * {@link String } * */ public void setUom(String value) { this.uom = value; } }