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

org.schema.Menu Maven / Gradle / Ivy

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

/**
 * Schema.org/Menu
 * A structured representation of food or drink items available from a FoodEstablishment.
 *
 * @author schema.org
 * @class Menu
 * @module org.schema
 * @extends CreativeWork
 */
public class Menu extends CreativeWork {
	/**
	 * Schema.org/hasMenuItem
	 * A food or drink item contained in a menu or menu section.
	 *
	 * @property hasMenuItem
	 * @type MenuItem
	 */
	public MenuItem hasMenuItem;
	/**
	 * Schema.org/hasMenuSection
	 * A subgrouping of the menu (by dishes, course, serving time period, etc.).
	 *
	 * @property hasMenuSection
	 * @type MenuSection
	 */
	public MenuSection hasMenuSection;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy