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

gate.creole.ontology.OURI Maven / Gradle / Ivy

Go to download

GATE - general achitecture for text engineering - is open source software capable of solving almost any text processing problem. This artifact enables you to embed the core GATE Embedded with its essential dependencies. You will able to use the GATE Embedded API and load and store GATE XML documents. This artifact is the perfect dependency for CREOLE plugins or for applications that need to customize the GATE dependencies due to confict with their own dependencies or for lower footprint.

The newest version!
/*
 * OURI.java
 * 
 * $Id: OURI.java 15002 2012-01-10 21:18:26Z markagreenwood $
 *
 */

package gate.creole.ontology;

/**
 * Interface for objects representing an URI.
 * All URIs used in an ontology are represented by objects implementing this
 * interface. A client of the GATE ontology API must never directly create
 * these objects using their constructor (clients must never directly use
 * any classes from the inplementing packages below this package!).
 * In order to create OURIs the {@link Ontology} factory methods
 * {@link Ontology#createOURI(String)}, {@link Ontology#createOURIForName(String)},
 * or {@link Ontology#generateOURI(String)} must be used.
 *
 * @author Johann Petrak
 */
public interface OURI extends ONodeID {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy