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

org.schema.Intangible Maven / Gradle / Ivy

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

/**
 * Schema.org/Intangible
 * A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.
 *
 * @author schema.org
 * @class Intangible
 * @module org.schema
 * @extends Thing
 */
public class Intangible extends Thing {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public Intangible() {
		context = "http://schema.org/";
		type = "Intangible";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy