/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, 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.swe.xml.v101; import java.util.Arrays; import java.util.List; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import org.geotoolkit.swe.xml.AbstractCategory; import org.apache.sis.util.ComparisonMode; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <extension base="{http://www.opengis.net/swe/1.0.1}AbstractDataComponentType"> * <sequence> * <element name="codeSpace" type="{http://www.opengis.net/swe/1.0.1}CodeSpacePropertyType" minOccurs="0"/> * <element name="constraint" type="{http://www.opengis.net/swe/1.0.1}AllowedTokensPropertyType" minOccurs="0"/> * <element name="quality" type="{http://www.opengis.net/swe/1.0.1}QualityPropertyType" minOccurs="0"/> * <element name="value" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/> * </sequence> * <attGroup ref="{http://www.opengis.net/swe/1.0.1}SimpleComponentAttributeGroup"/> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "codeSpace", "constraint", "quality", "value" }) @XmlRootElement(name = "Category") public class Category extends AbstractDataComponentType implements AbstractCategory { private CodeSpacePropertyType codeSpace; private AllowedTokensPropertyType constraint; private QualityPropertyType quality; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") private String value; @XmlAttribute @XmlSchemaType(name = "anyURI") private String referenceFrame; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") private String axisID; public Category() { } public Category(final AbstractCategory cat) { super(cat); if (cat != null) { this.axisID = cat.getAxisID(); if (cat.getCodeSpace() != null) { this.codeSpace = new CodeSpacePropertyType(cat.getCodeSpace()); } if (cat.getConstraint() != null) { this.constraint = new AllowedTokensPropertyType(cat.getConstraint()); } if (cat.getQuality() != null && !cat.getQuality().isEmpty()) { this.quality = new QualityPropertyType(cat.getQuality().get(0)); } this.value = cat.getValue(); this.referenceFrame = cat.getReferenceFrame(); } } public Category(final String definition, final String value) { super(definition); this.value = value; } public Category(final String definition, final String value, final String codespace) { super(definition); this.value = value; this.codeSpace = new CodeSpacePropertyType(codespace); } /** * Gets the value of the codeSpace property. */ @Override public CodeSpacePropertyType getCodeSpace() { return codeSpace; } /** * Sets the value of the codeSpace property. */ public void setCodeSpace(final CodeSpacePropertyType value) { this.codeSpace = value; } /** * Gets the value of the quality property. */ @Override public List<QualityPropertyType> getQuality() { if (quality != null) { return Arrays.asList(quality); } return null; } /** * Sets the value of the quality property. */ public void setQuality(final QualityPropertyType value) { this.quality = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ @Override public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(final String value) { this.value = value; } /** * Gets the value of the referenceFrame property. * * @return * possible object is * {@link String } * */ @Override public String getReferenceFrame() { return referenceFrame; } /** * Sets the value of the referenceFrame property. * * @param value * allowed object is * {@link String } * */ public void setReferenceFrame(final String value) { this.referenceFrame = value; } /** * Gets the value of the axisID property. * * @return * possible object is * {@link String } * */ @Override public String getAxisID() { return axisID; } /** * Sets the value of the axisID property. * * @param value * allowed object is * {@link String } * */ public void setAxisID(final String value) { this.axisID = value; } /** * @return the constraint */ @Override public AllowedTokensPropertyType getConstraint() { return constraint; } /** * Verify if this entry is identical to specified object. */ @Override public boolean equals(final Object object, final ComparisonMode mode) { if (object == this) { return true; } if (object instanceof Category && super.equals(object, mode)) { final Category that = (Category) object; return Objects.equals(this.axisID, that.axisID) && Objects.equals(this.getConstraint(), that.getConstraint()) && Objects.equals(this.quality, that.quality) && Objects.equals(this.referenceFrame, that.referenceFrame) && Objects.equals(this.codeSpace, that.codeSpace) && Objects.equals(this.value, that.value); } return false; } @Override public int hashCode() { int hash = 7; hash = 29 * hash + (this.codeSpace != null ? this.codeSpace.hashCode() : 0); hash = 29 * hash + (this.getConstraint() != null ? this.getConstraint().hashCode() : 0); hash = 29 * hash + (this.quality != null ? this.quality.hashCode() : 0); hash = 29 * hash + (this.value != null ? this.value.hashCode() : 0); hash = 29 * hash + (this.referenceFrame != null ? this.referenceFrame.hashCode() : 0); hash = 29 * hash + (this.axisID != null ? this.axisID.hashCode() : 0); return hash; } }