/* * 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.v100; import java.util.ArrayList; 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.XmlType; import org.geotoolkit.swe.xml.DataComponentProperty; import org.geotoolkit.swe.xml.DataRecord; import org.apache.sis.util.ComparisonMode; /** * <p>Java class for DataRecordType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DataRecordType"> * <complexContent> * <extension base="{http://www.opengis.net/swe/1.0}AbstractDataRecordType"> * <sequence> * <element name="field" type="{http://www.opengis.net/swe/1.0}DataComponentPropertyType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DataRecordType", propOrder = { "field" }) public class DataRecordType extends AbstractDataRecordType implements DataRecord { private List<DataComponentPropertyType> field; public DataRecordType() { } public DataRecordType(final String definition, final List<DataComponentPropertyType> field) { super(definition); this.field = field; } public DataRecordType(final DataRecord dr) { super(dr); if (dr != null && dr.getField() != null) { this.field = new ArrayList<DataComponentPropertyType>(); for (DataComponentProperty d : dr.getField()) { this.field.add(new DataComponentPropertyType(d)); } } } /** * Gets the value of the field property. */ public List<DataComponentPropertyType> getField() { if (field == null) { field = new ArrayList<DataComponentPropertyType>(); } return this.field; } /** * Gets the value of the field property. */ public void setField(final List<DataComponentPropertyType> field) { this.field = field; } /** * Gets the value of the field property. */ public void setField(final DataComponentPropertyType field) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(field); } /** * Sets the value of the field property. */ public void setField(final QuantityType Quantity) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(Quantity)); } /** * Sets the value of the field property. */ public void setField(final DataRecordType record) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(record)); } /** * Sets the value of the field property. */ public void setField(final TimeType time) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(time)); } /** * Sets the value of the field property. */ public void setField(final TimeRange time) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(time)); } /** * Sets the value of the field property. */ public void setField(final QuantityRange qr) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(qr)); } /** * Sets the value of the field property. */ public void setField(final BooleanType boo) { if (this.field == null) { this.field = new ArrayList<DataComponentPropertyType>(); } this.field.add(new DataComponentPropertyType(boo)); } @Override public String toString() { StringBuilder sb = new StringBuilder(super.toString()).append('\n'); if (field != null) { for (DataComponentPropertyType d : field) { sb.append(d).append('\n'); } } return sb.toString(); } /** * 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 DataRecordType && super.equals(object, mode)) { final DataRecordType that = (DataRecordType) object; return Objects.equals(this.field, that.field); } return false; } @Override public int hashCode() { int hash = 3; hash = 37 * hash + (this.field != null ? this.field.hashCode() : 0); return hash; } }