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