/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 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.gts.xml; import java.math.BigDecimal; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import java.util.Objects; import java.util.logging.Level; 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; import javax.xml.datatype.DatatypeConfigurationException; import javax.xml.datatype.DatatypeFactory; import javax.xml.datatype.Duration; import org.apache.sis.util.iso.SimpleInternationalString; import org.apache.sis.util.logging.Logging; import org.opengis.temporal.PeriodDuration; import org.opengis.util.InternationalString; /** * <p>Java class for TM_PeriodDuration_PropertyType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TM_PeriodDuration_PropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence minOccurs="0"> * <element ref="{http://www.isotc211.org/2005/gts}TM_PeriodDuration"/> * </sequence> * <attribute ref="{http://www.isotc211.org/2005/gco}nilReason"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TM_PeriodDuration_PropertyType", propOrder = { "tmPeriodDuration" }) public class PeriodDurationType implements PeriodDuration { @XmlElement(name = "TM_PeriodDuration") protected Duration tmPeriodDuration; @XmlAttribute(namespace = "http://www.isotc211.org/2005/gco") protected List<String> nilReason; public PeriodDurationType() { } public PeriodDurationType(final String s) { try { final DatatypeFactory factory = DatatypeFactory.newInstance(); this.tmPeriodDuration = factory.newDuration(s); } catch (DatatypeConfigurationException ex) { Logging.getLogger("org.geotoolkit.gts.xml").log(Level.WARNING, "Error while initializing the TM_PeriodDuration", ex); } } public PeriodDurationType(final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) { try { final DatatypeFactory factory = DatatypeFactory.newInstance(); this.tmPeriodDuration = factory.newDuration(isPositive, years, months, days, hours, minutes, seconds); } catch (DatatypeConfigurationException ex) { Logging.getLogger("org.geotoolkit.gts.xml").log(Level.WARNING, "Error while initializing the TM_PeriodDuration", ex); } } public PeriodDurationType(final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) { try { final DatatypeFactory factory = DatatypeFactory.newInstance(); this.tmPeriodDuration = factory.newDuration(isPositive, years, months, days, hours, minutes, seconds); } catch (DatatypeConfigurationException ex) { Logging.getLogger("org.geotoolkit.gts.xml").log(Level.WARNING, "Error while initializing the TM_PeriodDuration", ex); } } /** * Gets the value of the tmPeriodDuration property. * * @return * possible object is * {@link Duration } * */ public Duration getTMPeriodDuration() { return tmPeriodDuration; } /** * Sets the value of the tmPeriodDuration property. * * @param value * allowed object is * {@link Duration } * */ public void setTMPeriodDuration(Duration value) { this.tmPeriodDuration = value; } /** * Gets the value of the nilReason property. * * Objects of the following type(s) are allowed in the list * {@link String } * */ public List<String> getNilReason() { if (nilReason == null) { nilReason = new ArrayList<String>(); } return this.nilReason; } @Override public InternationalString getDesignator() { return new SimpleInternationalString("P"); } @Override public InternationalString getYears() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getYears())); } return null; } @Override public InternationalString getMonths() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getMonths())); } return null; } @Override public InternationalString getDays() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getDays())); } return null; } @Override public InternationalString getTimeIndicator() { return new SimpleInternationalString("T"); } @Override public InternationalString getHours() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getHours())); } return null; } @Override public InternationalString getMinutes() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getMinutes())); } return null; } @Override public InternationalString getSeconds() { if (tmPeriodDuration != null) { return new SimpleInternationalString(Integer.toString(tmPeriodDuration.getSeconds())); } return null; } @Override public String toString() { return tmPeriodDuration + ""; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj instanceof PeriodDurationType) { final PeriodDurationType that = (PeriodDurationType) obj; return Objects.equals(this.nilReason, that.nilReason) && Objects.equals(this.tmPeriodDuration, that.tmPeriodDuration); } return false; } @Override public int hashCode() { int hash = 7; hash = 83 * hash + (this.tmPeriodDuration != null ? this.tmPeriodDuration.hashCode() : 0); hash = 83 * hash + (this.nilReason != null ? this.nilReason.hashCode() : 0); return hash; } }