org.opengis.cite.ogcapitiles10.util.TemporalExtent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-ogcapi-tiles10 Show documentation
Show all versions of ets-ogcapi-tiles10 Show documentation
Describe purpose of test suite.
package org.opengis.cite.ogcapitiles10.util;
import java.time.ZonedDateTime;
/**
* @author Lyn Goltz
*/
public class TemporalExtent {
private ZonedDateTime begin;
private ZonedDateTime end;
public TemporalExtent(ZonedDateTime begin, ZonedDateTime end) {
this.begin = begin;
this.end = end;
}
public ZonedDateTime getBegin() {
return begin;
}
public ZonedDateTime getEnd() {
return end;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy