Uses of Interface
gate.creole.ontology.OURI

Packages that use OURI
gate.creole.ontology The GATE ontology API. 
 

Uses of OURI in gate.creole.ontology
 

Classes in gate.creole.ontology that implement OURI
 class URI
          Deprecated. Use OURI objects and the Ontology factory methods for creating them instead.
 

Methods in gate.creole.ontology that return OURI
 OURI Ontology.createOURI(String theURI)
          Create an ORUI object from the given URI string.
 OURI Ontology.createOURIForName(String resourceName)
          Create an OURI from the given resource name, using the ontology base URI (default name space).
 OURI Ontology.generateOURI(String resourceNamePrefix)
          Generate a new unique OURI for this ontology.
 OURI Ontology.generateOURI(String resourceNamePrefix, String baseURI)
          Generate a new unique OURI for this ontology.
 OURI Ontology.getOntologyURI()
          Get the URI of this ontology.
 OURI OInstance.getOURI()
           
 OURI RDFProperty.getOURI()
          Get the URI of the property.
 OURI DataType.getXmlSchemaURI()
          Deprecated. 
 

Methods in gate.creole.ontology with parameters of type OURI
 AnnotationProperty Ontology.addAnnotationProperty(OURI aPropertyURI)
          Creates a new AnnotationProperty.
 DatatypeProperty Ontology.addDatatypeProperty(OURI aPropertyURI, Set<OClass> domain, DataType aDatatype)
          Create a DatatypeProperty with the given domain and range.
 ObjectProperty Ontology.addObjectProperty(OURI aPropertyURI, Set<OClass> domain, Set<OClass> range)
          Creates a new object property (a property that takes instances as values).
 OClass Ontology.addOClass(OURI aURI)
          Creates a new OWL Class and adds it the ontology.
 OClass Ontology.addOClass(OURI aURI, byte classType)
          Deprecated. - use one of the dedicated methods to add a named class or a restriction instead
 OInstance Ontology.addOInstance(OURI theInstanceURI, OClass theClass)
          Creates a new OInstance and returns it.
 RDFProperty Ontology.addRDFProperty(OURI aPropertyURI, Set<OResource> domain, Set<OResource> range)
          Deprecated.  
 SymmetricProperty Ontology.addSymmetricProperty(OURI aPropertyURI, Set<OClass> domainAndRange)
          Creates a new symmetric property (an object property that is symmetric).
 TransitiveProperty Ontology.addTransitiveProperty(OURI aPropertyURI, Set<OClass> domain, Set<OClass> range)
          Creates a new transitive property (an object property that is transitive).
 boolean Ontology.containsOInstance(OURI theInstanceURI)
          Checks whether the provided URI refers to an Instance that exists in the ontology.
 AnnotationProperty Ontology.getAnnotationProperty(OURI theURI)
          Returns the annotation property for the given URI or null if there is no annotation property with that URI.
 DatatypeProperty Ontology.getDatatypeProperty(OURI theURI)
          Returns the datatype property for the given URI or null if there is no datatype property with that URI.
 ObjectProperty Ontology.getObjectProperty(OURI theURI)
          Returns the object property for the given URI or null if there is no object property with that URI.
 OInstance Ontology.getOInstance(OURI theInstanceURI)
          Gets the instance with the given URI.
 RDFProperty Ontology.getProperty(OURI thePropertyURI)
          Returns the property for a given URI or null if there is no property with that URI.
 boolean Ontology.isAnnotationProperty(OURI thePropertyURI)
          Checkes whether there exists a statement in the ontology or not.
 boolean Ontology.isDatatypeProperty(OURI thePropertyURI)
          Checkes whether the ontology contains a datatype property with the given URI.
 boolean Ontology.isObjectProperty(OURI thePropertyURI)
          Checks if there exists an object property with the given URI
 boolean Ontology.isRDFProperty(OURI thePropertyURI)
          Checkes whether there exists a statement in the ontology or not.
 boolean Ontology.isSymmetricProperty(OURI thePropertyURI)
          Checkes whether there exists a statement in the ontology or not.
 boolean Ontology.isTransitiveProperty(OURI thePropertyURI)
          Checkes whether there exists a statement in the ontology or not.
 void Ontology.setOntologyURI(OURI theURI)
          Set the ontology URI of the current ontology.
 

Constructors in gate.creole.ontology with parameters of type OURI
DataType(OURI xmlSchemaURI)
          Constructor