/* * 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.Objects; 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.XmlSchemaType; import javax.xml.bind.annotation.XmlTransient; import javax.xml.bind.annotation.XmlType; import org.geotoolkit.internal.sql.table.Entry; import org.geotoolkit.swe.xml.AbstractBoolean; import org.geotoolkit.swe.xml.AbstractDataComponent; import org.geotoolkit.swe.xml.AbstractText; import org.geotoolkit.swe.xml.AbstractTime; import org.geotoolkit.swe.xml.AnyScalar; import org.geotoolkit.swe.xml.Quantity; /** * <p>Java class for componentPropertyType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="componentPropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence minOccurs="0"> * <element ref="{http://www.opengis.net/swe/1.0.1}component"/> * </sequence> * <attGroup ref="{http://www.opengis.net/gml}AssociationAttributeGroup"/> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnyScalarPropertyType", propOrder = { "abstractDataComponent", "time", "_boolean", "quantity", "text", "name" }) public class AnyScalarPropertyType implements AnyScalar, Entry { public static final AnyScalarPropertyType LATITUDE_FIELD = new AnyScalarPropertyType("Latitude", new QuantityType("urn:ogc:phenomenon:latitude:wgs84", "degree")); public static final AnyScalarPropertyType LONGITUDE_FIELD = new AnyScalarPropertyType("Longitude", new QuantityType("urn:ogc:phenomenon:longitude:wgs84", "degree")); public static final AnyScalarPropertyType FEATURE_FIELD = new AnyScalarPropertyType("FeatureID", new Text("urn:ogc:data:feature", null)); public static final AnyScalarPropertyType DEPTH_FIELD = new AnyScalarPropertyType("Depth", new QuantityType("urn:ogc:phenomenon:depth", "metres")); public static final AnyScalarPropertyType DEPTH_FIELD2 = new AnyScalarPropertyType("Depth", new QuantityType("urn:ogc:phenomenon:depth", "m")); public static final AnyScalarPropertyType PRESSION_FIELD = new AnyScalarPropertyType("Pression", new QuantityType("urn:ogc:phenomenon:PRES", "decibar")); public static final AnyScalarPropertyType TIME_FIELD = new AnyScalarPropertyType("Time", new TimeType("urn:ogc:data:time:iso8601")); @XmlTransient private String idDataRecord; @XmlAttribute private String name; @XmlElement(name = "AbstractDataComponent") private AbstractDataComponentType abstractDataComponent; @XmlElement(name = "Time") private TimeType time; @XmlElement(name = "Boolean") private BooleanType _boolean; @XmlElement(name = "Quantity") private QuantityType quantity; @XmlElement(name = "Text") private Text text; @XmlAttribute(namespace = "http://www.opengis.net/gml") @XmlSchemaType(name = "anyURI") private String remoteSchema; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String type; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String href; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String role; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") @XmlSchemaType(name = "anyURI") private String arcrole; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String title; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String show; @XmlAttribute(namespace = "http://www.w3.org/1999/xlink") private String actuate; public AnyScalarPropertyType() { } public AnyScalarPropertyType(final AnyScalar sc) { if (sc != null) { if (sc.getValue() != null) { AbstractDataComponent component = sc.getValue(); if (component instanceof AbstractTime) { this.time = new TimeType((AbstractTime) component); } else if (component instanceof Quantity) { this.quantity = new QuantityType((Quantity) component); } else if (component instanceof AbstractBoolean) { this._boolean = new BooleanType((AbstractBoolean) component); } else if (component instanceof AbstractText) { this.text = new Text((AbstractText) component); } else { abstractDataComponent = new AbstractDataComponentType(component); } } this.actuate = sc.getActuate(); this.arcrole = sc.getArcrole(); this.href = sc.getHref(); this.name = sc.getName(); this.remoteSchema = sc.getRemoteSchema(); this.role = sc.getRole(); this.show = sc.getShow(); this.title = sc.getTitle(); this.type = sc.getType(); } } public AnyScalarPropertyType(final String name, final QuantityType quantity) { this.name = name; this.quantity = quantity; } /** * Build a new component Property. */ public AnyScalarPropertyType(final String idDataRecord, final String name, final AbstractDataComponentType component) { this.name = name; this.idDataRecord = idDataRecord; if (component instanceof TimeType) { this.time = (TimeType)component; } else if (component instanceof QuantityType) { this.quantity = (QuantityType)component; } else if (component instanceof BooleanType) { this._boolean = (BooleanType)component; } else if (component instanceof Text) { this.text = (Text)component; } else { abstractDataComponent = component; } } public AnyScalarPropertyType(final String name, final Text text) { this.name = name; this.text = text; } public AnyScalarPropertyType(final String name, final TimeType time) { this.name = name; this.time = time; } /** * Gets the value of name. */ @Override public String getName() { return this.name; } @Override public String getIdentifier() { return this.name; } /** * retourne l'identifiant du data record qui contient ce champ. */ public String getIdDataRecord() { return idDataRecord; } /** * Gets the value of the phenomenon property. */ @Override public AbstractDataComponentType getValue() { if (abstractDataComponent != null) { return abstractDataComponent; } else if (time != null){ return time; } else if (_boolean != null){ return _boolean; } else if (quantity != null){ return quantity; } else if (text != null){ return text; } return null; } /** * Gets the value of the remoteSchema property. */ @Override public String getRemoteSchema() { return remoteSchema; } /** * Gets the value of the type property. */ @Override public String getType() { return type; } /** * Gets the value of the href property. */ @Override public String getHref() { return href; } /** * Gets the value of the role property. */ @Override public String getRole() { return role; } /** * Gets the value of the arcrole property. */ @Override public String getArcrole() { return arcrole; } /** * Gets the value of the title property. */ @Override public String getTitle() { return title; } /** * Gets the value of the show property. */ @Override public String getShow() { return show; } /** * Gets the value of the actuate property. */ @Override public String getActuate() { return actuate; } /** * Verify if this entry is identical to specified object. */ @Override public boolean equals(final Object object) { if (object == this) { return true; } if (object instanceof AnyScalarPropertyType) { final AnyScalarPropertyType that = (AnyScalarPropertyType) object; return Objects.equals(this._boolean, that._boolean) && Objects.equals(this.abstractDataComponent, that.abstractDataComponent) && Objects.equals(this.quantity, that.quantity) && Objects.equals(this.time, that.time) && Objects.equals(this.actuate, that.actuate) && Objects.equals(this.arcrole, that.arcrole) && Objects.equals(this.type, that.type) && Objects.equals(this.href, that.href) && Objects.equals(this.remoteSchema, that.remoteSchema) && Objects.equals(this.show, that.show) && Objects.equals(this.role, that.role) && Objects.equals(this.name, that.name) && Objects.equals(this.text, that.text) && Objects.equals(this.title, that.title); } return false; } @Override public int hashCode() { int hash = 5; hash = 47 * hash + (this.abstractDataComponent != null ? this.abstractDataComponent.hashCode() : 0); hash = 47 * hash + (this._boolean != null ? this._boolean.hashCode() : 0); hash = 47 * hash + (this.quantity != null ? this.quantity.hashCode() : 0); hash = 47 * hash + (this.time != null ? this.time.hashCode() : 0); hash = 47 * hash + (this.remoteSchema != null ? this.remoteSchema.hashCode() : 0); hash = 47 * hash + (this.actuate != null ? this.actuate.hashCode() : 0); hash = 47 * hash + (this.arcrole != null ? this.arcrole.hashCode() : 0); hash = 47 * hash + (this.href != null ? this.href.hashCode() : 0); hash = 47 * hash + (this.role != null ? this.role.hashCode() : 0); hash = 47 * hash + (this.show != null ? this.show.hashCode() : 0); hash = 47 * hash + (this.title != null ? this.title.hashCode() : 0); hash = 47 * hash + (this.type != null ? this.type.hashCode() : 0); hash = 47 * hash + (this.text != null ? this.text.hashCode() : 0); hash = 47 * hash + (this.name != null ? this.name.hashCode() : 0); return hash; } /** * Retourne une representation de l'objet. */ @Override public String toString() { final StringBuilder s = new StringBuilder("[AnyScalarPropertyType\n]"); if(name != null) { s.append("name=").append(name).append('\n'); } if (abstractDataComponent != null) { s.append(abstractDataComponent).append('\n'); } if (_boolean != null) { s.append(_boolean).append('\n'); } if (quantity != null) { s.append(quantity).append('\n'); } if (time != null) { s.append(time).append('\n'); } if(actuate != null) { s.append("actuate=").append(actuate).append('\n'); } if(arcrole != null) { s.append("arcrole=").append(arcrole).append('\n'); } if(href != null) { s.append("href=").append(href).append('\n'); } if(role != null) { s.append("role=").append(role).append('\n'); } if(show != null) { s.append("show=").append(show).append('\n'); } if(title != null) { s.append("title=").append(title).append('\n'); } if(text != null) { s.append("text=").append(text).append('\n'); } return s.toString(); } }