Uses of Interface
org.jrdf.query.relation.type.NodeType

Packages that use NodeType
org.jrdf.graph This package defines a set of APIs required to implement an RDF Graph and it's associated objects. 
org.jrdf.graph.local.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.query.expression   
org.jrdf.query.relation   
org.jrdf.query.relation.mem   
org.jrdf.query.relation.type   
org.jrdf.sparql.builder   
org.jrdf.util Utility classes - ones that don't belong elsewhere. 
 

Uses of NodeType in org.jrdf.graph
 

Methods in org.jrdf.graph with parameters of type NodeType
 ClosableIterator<? extends Node> Graph.findNodes(NodeType type)
          Returns all unique values of a given type.
 

Uses of NodeType in org.jrdf.graph.local.mem
 

Methods in org.jrdf.graph.local.mem with parameters of type NodeType
 ClosableIterator<? extends Node> GraphImpl.findNodes(NodeType type)
           
 

Uses of NodeType in org.jrdf.query.expression
 

Method parameters in org.jrdf.query.expression with type arguments of type NodeType
 List<AttributeValuePair> Constraint.getAvp(Map<AttributeName,? extends NodeType> allVariables)
           
 

Uses of NodeType in org.jrdf.query.relation
 

Methods in org.jrdf.query.relation that return NodeType
 NodeType Attribute.getType()
          The type of the attribute - either subject, predicate, object or URI, Literal or bnode.
 

Uses of NodeType in org.jrdf.query.relation.mem
 

Methods in org.jrdf.query.relation.mem that return NodeType
 NodeType AttributeImpl.getType()
           
 

Method parameters in org.jrdf.query.relation.mem with type arguments of type NodeType
 List<Attribute> SortedAttributeFactoryImpl.createHeading(List<NodeType> types)
           
 List<Attribute> SortedAttributeFactory.createHeading(List<NodeType> types)
          Create a heading based on the given node types.
 

Constructors in org.jrdf.query.relation.mem with parameters of type NodeType
AttributeImpl(AttributeName newAttributeName, NodeType newType)
           
 

Uses of NodeType in org.jrdf.query.relation.type
 

Subinterfaces of NodeType in org.jrdf.query.relation.type
 interface PositionalNodeType
          Node types - data types belong to RDF nodes.
 interface ValueNodeType
          Node types - data types belong to RDF nodes.
 

Classes in org.jrdf.query.relation.type that implement NodeType
 class BlankNodeType
          A blank node type.
 class LiteralNodeType
          A literal node type.
 class ObjectNodeType
          An object node type.
 class PredicateNodeType
          An predicate node type.
 class PredicateObjectNodeType
          An subjectpredicate node type.
 class ResourceNodeType
          A Resource node type - a URIReference or BlankNode.
 class SubjectNodeType
          An subject node type.
 class SubjectObjectNodeType
          An subjectpredicate node type.
 class SubjectPredicateNodeType
          An subjectpredicate node type.
 class SubjectPredicateObjectNodeType
          An subjectpredicate node type.
 class URIReferenceNodeType
          An URI Reference node type.
 

Fields in org.jrdf.query.relation.type declared as NodeType
static NodeType PredicateNodeType.PREDICATE_TYPE
          PredicateNodeType constant.
static NodeType ResourceNodeType.RESOURCE_TYPE
          ResourceNodeType constant.
 

Methods in org.jrdf.query.relation.type that return types with arguments of type NodeType
 Set<? extends NodeType> URIReferenceNodeType.composedOf()
           
 Set<? extends NodeType> SubjectPredicateObjectNodeType.composedOf()
           
 Set<? extends NodeType> SubjectPredicateNodeType.composedOf()
           
 Set<? extends NodeType> SubjectObjectNodeType.composedOf()
           
 Set<? extends NodeType> SubjectNodeType.composedOf()
           
 Set<? extends NodeType> ResourceNodeType.composedOf()
           
 Set<? extends NodeType> PredicateObjectNodeType.composedOf()
           
 Set<? extends NodeType> PredicateNodeType.composedOf()
           
 Set<? extends NodeType> ObjectNodeType.composedOf()
           
 Set<? extends NodeType> NodeType.composedOf()
          Returns the sub-types of a composite type.
 Set<? extends NodeType> LiteralNodeType.composedOf()
           
 Set<? extends NodeType> BlankNodeType.composedOf()
           
 

Methods in org.jrdf.query.relation.type with parameters of type NodeType
 int TypeComparatorImpl.compare(NodeType type1, NodeType type2)
           
 

Uses of NodeType in org.jrdf.sparql.builder
 

Constructors in org.jrdf.sparql.builder with parameters of type NodeType
ElementBuilderImpl(NodeType nodeType, Node graphNode, Attribute attribute, Graph currentGraph, Map<String,String> prefixMap)
           
 

Uses of NodeType in org.jrdf.util
 

Method parameters in org.jrdf.util with type arguments of type NodeType
static NodeTypeEnum NodeTypeEnum.getNodeType(Class<? extends NodeType> nodeClass)