org.geotools.temporal.reference.DefaultClock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-main Show documentation
Show all versions of gt-main Show documentation
The main module contains the GeoTools public interfaces that are used by
other GeoTools modules (and GeoTools applications). Where possible we make
use industry standard terms as provided by OGC and ISO standards.
The formal GeoTools public api consists of gt-metadata, jts and the gt-main module.
The main module contains the default implementations that are available provided
to other GeoTools modules using our factory system. Factories are obtained from
an appropriate FactoryFinder, giving applications a chance configure the factory
used using the Factory Hints facilities.
FilterFactory ff = CommonFactoryFinder.getFilterFactory();
Expression expr = ff.add( expression1, expression2 );
If you find yourself using implementation specific classes chances are you doing it wrong:
Expression expr = new AddImpl( expression1, expressiom2 );
The newest version!
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2008, Open Source Geospatial Foundation (OSGeo)
*
* 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;
* version 2.1 of the License.
*
* 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.geotools.temporal.reference;
import java.util.Collection;
import org.geotools.util.Utilities;
import org.opengis.metadata.extent.Extent;
import org.opengis.referencing.ReferenceIdentifier;
import org.opengis.temporal.Calendar;
import org.opengis.temporal.Clock;
import org.opengis.temporal.ClockTime;
import org.opengis.util.InternationalString;
/** @author Mehdi Sidhoum (Geomatys) */
public class DefaultClock extends DefaultTemporalReferenceSystem implements Clock {
/** Provide the name or description of an event, such as solar noon or sunrise. */
private InternationalString referenceEvent;
/**
* Provide the time of day associated with the reference event expressed as a time of day in the
* given clock, the reference time is usually the origin of the clock scale.
*/
private ClockTime referenceTime;
/** This is the 24-hour local or UTC time that corresponds to the reference time. */
private ClockTime utcReference;
public DefaultClock(
ReferenceIdentifier name,
Extent domainOfValidity,
InternationalString referenceEvent,
ClockTime referenceTime,
ClockTime utcReference) {
super(name, domainOfValidity);
this.referenceEvent = referenceEvent;
this.referenceTime = referenceTime;
this.utcReference = utcReference;
}
public InternationalString getReferenceEvent() {
return referenceEvent;
}
public ClockTime getReferenceTime() {
return referenceTime;
}
public ClockTime getUTCReference() {
return utcReference;
}
/**
* Takes a 24-hour local or UTC time and return the equivalent time of day expressed in terms of
* the specified clock.
*/
public ClockTime clkTrans(ClockTime uTime) {
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* Takes a time of day expressed in terms of the specified clock and return the equivalent time
* of day in 24-hour local or UTC time.
*/
public ClockTime utcTrans(ClockTime clkTime) {
throw new UnsupportedOperationException("Not supported yet.");
}
public void setReferenceEvent(InternationalString referenceEvent) {
this.referenceEvent = referenceEvent;
}
public void setReferenceTime(ClockTime referenceTime) {
this.referenceTime = referenceTime;
}
public void setUtcReference(ClockTime utcReference) {
this.utcReference = utcReference;
}
public Collection getDateBasis() {
return null;
}
@Override
public boolean equals(final Object object) {
if (object == this) {
return true;
}
if (super.equals(object)) {
final DefaultClock that;
if (object instanceof DefaultClock) {
that = (DefaultClock) object;
return Utilities.equals(this.referenceEvent, that.referenceEvent)
&& Utilities.equals(this.referenceTime, that.referenceTime)
&& Utilities.equals(this.utcReference, that.utcReference);
}
}
return false;
}
@Override
public int hashCode() {
int hash = 5;
hash = 37 * hash + (this.referenceEvent != null ? this.referenceEvent.hashCode() : 0);
hash = 37 * hash + (this.referenceTime != null ? this.referenceTime.hashCode() : 0);
hash = 37 * hash + (this.utcReference != null ? this.utcReference.hashCode() : 0);
return hash;
}
@Override
public String toString() {
StringBuilder s = new StringBuilder("Clock:").append('\n');
if (referenceEvent != null) {
s.append("referenceEvent:").append(referenceEvent).append('\n');
}
if (referenceTime != null) {
s.append("referenceTime:").append(referenceTime).append('\n');
}
if (utcReference != null) {
s.append("utcReference:").append(utcReference).append('\n');
}
return s.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy