org.jrdf.vocabulary
Class XSD

java.lang.Object
  extended by org.jrdf.vocabulary.Vocabulary
      extended by org.jrdf.vocabulary.XSD
All Implemented Interfaces:
Serializable

public class XSD
extends Vocabulary

A set of constants for the standard XSD vocabulary.

Version:
$Revision: 1045 $
Author:
Andrew Newman
See Also:
Serialized Form

Field Summary
static URI ANY_URI
          URI of the anyURI type.
static URI BASE_64_BINARY
          URI for the base64 binary data type.
static URI BASE_URI
          The URI of the XSD name space.
static URI BOOLEAN
          URI of the boolean type.
static URI BYTE
          Byte data type.
static URI DATE
          URI of the date type.
static URI DATE_TIME
          URI of the dateTime type.
static URI DECIMAL
          URI of the decimal type.
static Set<URI> DECIMALS
          The set of all decimal and derived data types.
static URI DOUBLE
          URI of the double type.
static URI DURATION
          URI of the duration type.
static URI FLOAT
          URI of the float type.
static URI G_DAY
          URI for the Gregorian day.
static URI G_MONTH
          URI for the Gregorian month.
static URI G_MONTH_DAY
          URI for the Gregorian month and day.
static URI G_YEAR
          URI for the Gregorian year.
static URI G_YEAR_MONTH
          URI for the Gregorian year and month data type.
static URI HEX_BINARY
          URI for the hex binary date type.
static URI INT
          Integer data type.
static URI INTEGER
          Integer data type - whole numbers (no factions), no limit in size.
static URI LONG
          Long data type.
static URI NON_NEGATIVE_INTEGER
          NonNegativeInteger data type.
static URI NON_POSITIVE_INTEGER
          NonPositiveInteger data type.
static URI NOTATION
          Notation data type.
static URI Q_NAME
          QName data type.
static URI SHORT
          Short data type.
static URI STRING
          URI of the string type.
static Set<URI> STRINGS
          The set of all string and derived data types.
static URI TIME
          URI of the time type.
 
Fields inherited from class org.jrdf.vocabulary.Vocabulary
RESOURCES
 
Constructor Summary
XSD()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BASE_URI

public static final URI BASE_URI
The URI of the XSD name space.


STRING

public static final URI STRING
URI of the string type.


BOOLEAN

public static final URI BOOLEAN
URI of the boolean type.


DECIMAL

public static final URI DECIMAL
URI of the decimal type.


FLOAT

public static final URI FLOAT
URI of the float type.


DOUBLE

public static final URI DOUBLE
URI of the double type.


DURATION

public static final URI DURATION
URI of the duration type.


DATE_TIME

public static final URI DATE_TIME
URI of the dateTime type.


TIME

public static final URI TIME
URI of the time type.


DATE

public static final URI DATE
URI of the date type.


G_YEAR_MONTH

public static final URI G_YEAR_MONTH
URI for the Gregorian year and month data type.


G_YEAR

public static final URI G_YEAR
URI for the Gregorian year.


G_MONTH_DAY

public static final URI G_MONTH_DAY
URI for the Gregorian month and day.


G_DAY

public static final URI G_DAY
URI for the Gregorian day.


G_MONTH

public static final URI G_MONTH
URI for the Gregorian month.


HEX_BINARY

public static final URI HEX_BINARY
URI for the hex binary date type.


BASE_64_BINARY

public static final URI BASE_64_BINARY
URI for the base64 binary data type.


ANY_URI

public static final URI ANY_URI
URI of the anyURI type.


Q_NAME

public static final URI Q_NAME
QName data type.


NOTATION

public static final URI NOTATION
Notation data type.


INTEGER

public static final URI INTEGER
Integer data type - whole numbers (no factions), no limit in size.


LONG

public static final URI LONG
Long data type.


INT

public static final URI INT
Integer data type.


NON_POSITIVE_INTEGER

public static final URI NON_POSITIVE_INTEGER
NonPositiveInteger data type.


NON_NEGATIVE_INTEGER

public static final URI NON_NEGATIVE_INTEGER
NonNegativeInteger data type.


SHORT

public static final URI SHORT
Short data type.


BYTE

public static final URI BYTE
Byte data type.


DECIMALS

public static final Set<URI> DECIMALS
The set of all decimal and derived data types.


STRINGS

public static final Set<URI> STRINGS
The set of all string and derived data types.

Constructor Detail

XSD

public XSD()