org.opengis.cite.ogcapiprocesses10.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-processes10 Show documentation
Show all versions of ets-ogcapi-processes10 Show documentation
Describe purpose of test suite.
package org.opengis.cite.ogcapiprocesses10.util;
import java.time.ZonedDateTime;
/**
*
* TemporalExtent class.
*
*
* @author Lyn Goltz
*/
public class TemporalExtent {
private ZonedDateTime begin;
private ZonedDateTime end;
/**
*
* Constructor for TemporalExtent.
*
* @param begin a {@link java.time.ZonedDateTime} object
* @param end a {@link java.time.ZonedDateTime} object
*/
public TemporalExtent(ZonedDateTime begin, ZonedDateTime end) {
this.begin = begin;
this.end = end;
}
/**
*
* Getter for the field begin
.
*
* @return a {@link java.time.ZonedDateTime} object
*/
public ZonedDateTime getBegin() {
return begin;
}
/**
*
* Getter for the field end
.
*
* @return a {@link java.time.ZonedDateTime} object
*/
public ZonedDateTime getEnd() {
return end;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy