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

org.schema.Reservoir Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/Reservoir
 * A reservoir of water, typically an artificially created lake, like the Lake Kariba reservoir.
 *
 * @author schema.org
 * @class Reservoir
 * @module org.schema
 * @extends BodyOfWater
 */
public class Reservoir extends BodyOfWater {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public Reservoir() {
		context = "http://schema.org/";
		type = "Reservoir";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy