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

org.schema.Quantity Maven / Gradle / Ivy

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

/**
 * Schema.org/Quantity
 * Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.
 *
 * @author schema.org
 * @class Quantity
 * @module org.schema
 * @extends Intangible
 */
public class Quantity extends Intangible {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public Quantity() {
		context = "http://schema.org/";
		type = "Quantity";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy