Uses of Class
gate.creole.ontology.DataType

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

Uses of DataType in gate.creole.ontology
 

Subclasses of DataType in gate.creole.ontology
(package private)  class BooleanDT
          Boolean DataType
(package private)  class ByteDT
          Byte DataType
(package private)  class DateDT
           
(package private)  class DateTimeDT
           
(package private)  class DoubleDT
          Double Datatype
(package private)  class FloatDT
          Float Datatype
(package private)  class IntegerDT
          Integer Datatype
(package private)  class LongDT
          Long Datatype
(package private)  class NegativeIntegerDT
          Negative Integer Datatype
(package private)  class NonNegativeIntegerDT
          NonNegativeInteger Datatype
(package private)  class ShortDT
          Short Datatype
(package private)  class TimeDT
           
(package private)  class UnsignedByteDT
          UnsignedByte Datatype
(package private)  class UnsignedLongDT
          UnsignedLong Datatype
(package private)  class UnsignedShortDT
          UnsignedShort Datatype
 

Fields in gate.creole.ontology declared as DataType
private  DataType Literal.dataType
          Assigned Datatype to this instance of literal
 

Fields in gate.creole.ontology with type parameters of type DataType
private static HashMap<String,DataType> DataType.datatypeMap
          Map containing uri and respective instance of datatypes
private static HashMap<String,DataType> OntologyUtilities.datatypeMap
          Deprecated. Map containing uri and respective instance of datatypes
 

Methods in gate.creole.ontology that return DataType
static DataType DataType.getBooleanDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#boolean" datatype.
static DataType DataType.getByteDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#byte" datatype.
 DataType CardinalityRestriction.getDataType()
          This method returns the datatype uri.
 DataType DatatypeProperty.getDataType()
          This method returns the DataType set for this property
 DataType Literal.getDataType()
          Gets the assigned datatype.
 DataType MaxCardinalityRestriction.getDataType()
          This method returns the datatype associated to the restriction.
 DataType MinCardinalityRestriction.getDataType()
          This method returns the datatype associated to the restriction.
static DataType DataType.getDataType(String datatypeURI)
          Gets the respective datatype for the given datatype URI.
static DataType OntologyUtilities.getDataType(String datatypeURI)
          Deprecated. use getDataType(java.lang.String) instead
static DataType DataType.getDateDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#date" datatype.
static DataType DataType.getDateTimeDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#dateTime" datatype.
static DataType DataType.getDecimalDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#decimal" datatype.
static DataType DataType.getDoubleDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#double" datatype.
static DataType DataType.getDurationDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#duration" datatype.
static DataType DataType.getFloatDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#float" datatype.
static DataType DataType.getIntDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#int" datatype.
static DataType DataType.getIntegerDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#integer" datatype.
static DataType DataType.getLongDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#long" datatype.
static DataType DataType.getNegativeIntegerDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#negativeInteger" datatype.
static DataType DataType.getNonNegativeIntegerDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#nonNegativeInteger" datatype.
static DataType DataType.getNonPositiveIntegerDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#nonPositiveInteger" datatype.
static DataType DataType.getPositiveIntegerDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#positiveInteger" datatype.
static DataType DataType.getShortDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#short" datatype.
static DataType DataType.getStringDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#string" datatype.
static DataType DataType.getTimeDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#time" datatype.
static DataType DataType.getUnsignedByteDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#unsignedByte" datatype.
static DataType DataType.getUnsignedIntDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#unsignedInt" datatype.
static DataType DataType.getUnsignedLongDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#unsignedLong" datatype.
static DataType DataType.getUnsignedShortDataType()
          denotes the "http://www.w3.org/2001/XMLSchema#unsignedShort" datatype.
 

Methods in gate.creole.ontology with parameters of type DataType
 DatatypeProperty Ontology.addDatatypeProperty(OURI aPropertyURI, Set<OClass> domain, DataType aDatatype)
          Create a DatatypeProperty with the given domain and range.
 void CardinalityRestriction.setValue(String value, DataType dataType)
          Sets the cardinality value.
 void MaxCardinalityRestriction.setValue(String value, DataType dataType)
          Sets the cardinality value.
 void MinCardinalityRestriction.setValue(String value, DataType dataType)
          Sets the cardinality value.
 

Constructors in gate.creole.ontology with parameters of type DataType
Literal(String value, DataType dataType)
          Constructor