org.jrdf.vocabulary
Class RDF

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

public class RDF
extends Vocabulary

A set of constants for the standard RDF vocabulary.

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

Field Summary
static URI ALT
          The class of containers of alternatives.
static URI BAG
          The class of unordered containers.
static URI BASE_URI
          The URI of the RDF name space.
static URI FIRST
          The first item in the subject RDF list.
static URI LI
          A special property element that is equivalent to rdf:_1, rdf:_2 in order.
static URI LIST
          The class of RDF Lists.
static URI NIL
          The empty list, with no items in it.
static URI OBJECT
          The object of the subject RDF statement.
static URI PREDICATE
          The predicate of the subject RDF statement.
static URI PROPERTY
          The class of RDF properties.
static URI REST
          The rest of the subject RDF list after the first item.
static URI SEQ
          The class of ordered containers.
static URI STATEMENT
          The class of RDF statements.
static URI SUBJECT
          The subject of the subject RDF statement.
static URI TYPE
          The subject is an instance of a class.
static URI VALUE
          Idiomatic property used for structured values.
static URI XML_LITERAL
          The class of XML literal values.
 
Fields inherited from class org.jrdf.vocabulary.Vocabulary
RESOURCES
 
Constructor Summary
RDF()
           
 
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 RDF name space.


BAG

public static final URI BAG
The class of unordered containers.


SEQ

public static final URI SEQ
The class of ordered containers.


ALT

public static final URI ALT
The class of containers of alternatives.


STATEMENT

public static final URI STATEMENT
The class of RDF statements.


PROPERTY

public static final URI PROPERTY
The class of RDF properties.


XML_LITERAL

public static final URI XML_LITERAL
The class of XML literal values.


LIST

public static final URI LIST
The class of RDF Lists.


LI

public static final URI LI
A special property element that is equivalent to rdf:_1, rdf:_2 in order. Only used in RDF/XML as inserting members of containers using LI normally will result in duplicate instances not being recorded.


NIL

public static final URI NIL
The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it.


SUBJECT

public static final URI SUBJECT
The subject of the subject RDF statement.


PREDICATE

public static final URI PREDICATE
The predicate of the subject RDF statement.


OBJECT

public static final URI OBJECT
The object of the subject RDF statement.


TYPE

public static final URI TYPE
The subject is an instance of a class.


VALUE

public static final URI VALUE
Idiomatic property used for structured values.


FIRST

public static final URI FIRST
The first item in the subject RDF list.


REST

public static final URI REST
The rest of the subject RDF list after the first item.

Constructor Detail

RDF

public RDF()