org.schema.Energy Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/Energy
* Properties that take Energy as values are of the form '<Number> <Energy unit of measure>'.
*
* @author schema.org
* @class Energy
* @module org.schema
* @extends Quantity
*/
public class Energy extends Quantity {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Energy() {
context = "http://schema.org/";
type = "Energy";
}
}