org.schema.State Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/State
* A state or province of a country.
*
* @author schema.org
* @class State
* @module org.schema
* @extends AdministrativeArea
*/
public class State extends AdministrativeArea {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public State() {
context = "http://schema.org/";
type = "State";
}
}