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

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

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