All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opengis.cite.ogcapiprocesses10.util.TemporalExtent Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
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