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

org.schema.InsertAction Maven / Gradle / Ivy

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

/**
 * Schema.org/InsertAction
 * The act of adding at a specific location in an ordered collection.
 *
 * @author schema.org
 * @class InsertAction
 * @module org.schema
 * @extends AddAction
 */
public class InsertAction extends AddAction {
	/**
	 * Schema.org/toLocation
	 * A sub property of location. The final location of the object or the agent after the action.
	 *
	 * @property toLocation
	 * @type Place
	 */
	public Place toLocation;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public InsertAction() {
		context = "http://schema.org/";
		type = "InsertAction";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy