com.hp.hpl.jena.rdf.model

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Jena 2.5.5 » com.hp.hpl.jena.rdf.model 
com.hp.hpl.jena.rdf.model

A package for creating and manipulating RDF graphs.

Java Source File NameTypeComment
Alt.javaInterface

An RDF Alternative container.

This interface defines methods for accessing RDF Alternative resources. These methods operate on the RDF statements contained in a model.

AltHasNoDefaultException.javaClass Exception thrown if an Alt has no default statement.
AnonId.javaClass Create a new id for an anonymous node.
Bag.javaInterface An RDF Bag container.

This interface defines methods for accessing RDF Bag resources. These methods operate on the RDF statements contained in a model.

Container.javaInterface An RDF Container.

This interface defines methods for accessing RDF container resources. These methods operate on the RDF statements contained in a model.

DoesNotReifyException.javaClass This exception may be raised when an attempt to convert an RDFNode to a ReifiedStatement fails because the RDFNode does not correspond to a reification.
EmptyListException.javaClass

A exception that is thrown when an operation is attempted on an empty (nil) list that actually requires a list of length one or more.

EmptyListUpdateException.javaClass

Exception that is thrown when an attept is made to perform a side-effectful operation on an RDFList that is the empty list, or rdf:nil. This is not permissible, since it would cause the URI of the RDFList to change from rdf:nil to a new bNode, and in Jena the URI of a node is invariant.

HasNoModelException.javaClass Exception to throw when a Statement or Resource (which don't have a useful common supertype, alas) don't have an associated model.
InfModel.javaInterface An extension to the normal Model interface that supports access to any underlying inference capability.
InvalidListException.javaClass

A exception that is thrown when an operation is attempted on a list that is not well-formed, and is being processed in strict mode.

JenaConfig.javaClass A Class for configuring Jena's behaviour.

It is sometimes necessary to configure Jena's behaviour.

ListIndexException.javaClass

A exception that is thrown when an operation attempts to access an indexed list element beyond the length of the list.

Literal.javaInterface An RDF Literal.

In RDF2003 literals can be typed.

LiteralRequiredException.javaClass Exception to throw when an RDFNode required to be a Literal isn't, or when a literal Node is required but a non-literal Node supplied.
Model.javaInterface An RDF Model.

An RDF model is a set of Statements.

ModelChangedListener.javaInterface The interface for classes that listen for model-changed events.
ModelCon.javaInterface Convenience methods which extend the Model interface.

The Model interface provides a set of primitive operations on an RDF model.

ModelExtract.javaClass ModelExtract - a wrapper for GraphExtract, allowing rooted sub-models to be extracted from other models with some boundary condition.
ModelFactory.javaClass ModelFactory provides methods for creating standard kinds of Model.
ModelFactoryBase.javaClass Helper functions for ModelFactory - in here to keep from obtruding on the end-users.
ModelGetter.javaInterface A ModelGetter object can retrieve a Model given a URL for it.
ModelGraphInterface.javaInterface ModelGraphInterface - this interface mediates between the API Model level and the SPI Graph level.
ModelLock.javaInterface
ModelMaker.javaInterface A ModelMaker contains a collection of named models, methods for creating new models [both named and anonymous] and opening previously-named models, removing models, and accessing a single "default" Model for this Maker.

Additional constraints are placed on a ModelMaker as compared to its ancestor ModelSource.

ModelReader.javaInterface A component interface used by ModelGetter for reading models.
ModelSource.javaInterface The revised and soon-to-be-core interface for sources of models, typically generated from RDF descriptions.
NodeIterator.javaInterface An iterator which returns RDF nodes.

RDF iterators are standard Java iterators, except that they have an extra method that returns specifically typed objects, in this case RDF nodes, and have a close() method.

NsIterator.javaInterface An iterator which returns namespace URI's.
ObjectF.javaInterface A factory for creating objects from RDF Literal strings.

Applications may have classes to handle specific kinds of values encoded as RDF Literal strings, e.g.

Property.javaInterface An RDF Property.
RDFError.javaClass
RDFErrorHandler.javaInterface A generic error handler.
RDFList.javaInterface

Provides a convenience encapsulation for lists formed from chains of RDF statements arranged to form a head/tail cons-cell structure.

RDFNode.javaInterface Interface covering RDF resources and literals.
RDFReader.javaInterface An RDFReader reads a serialized represenation of RDF, e.g.
RDFReaderF.javaInterface An RDFReader factory inferface.

This factory interface is slightly unusual, in that, as well as creating and returning RDFReader's, it also provides methods for creating a reader, invoking a read method on it and then shuting it down.

The factory will create an appropriate reader for the particular serialization language being read.

RDFVisitor.javaInterface
RDFWriter.javaInterface RDFWriter is an interface to RDF serializers.

An RDFWriter is a class which serializes an RDF model to some RDF serializaion language.

RDFWriterF.javaInterface An RDFReader factory inferface.

The factory will create an appropriate writer for the particular serialization language being read.

ReifiedStatement.javaInterface A ReifiedStatement represents a Statement as a Resource.
ResIterator.javaInterface An iterator which returns RDF Resources.
Resource.javaInterface An RDF Resource. Resource instances when created may be associated with a specific model. Resources created by a model will refer to that model, and support a range of methods, such as getProperty() and addProperty() which will access or modify that model.
ResourceF.javaInterface Create an application specific resource instance.

Applications may need to have classes which add behaviour to Resources, e.g.

ResourceFactory.javaClass A Factory class for creating resources.

This class creates resources and properties and things of that ilk. These resources are not associated with a user-modifiable model: doing getModel() on them will return null.

It is designed as a singleton.

ResourceRequiredException.javaClass Exception to throw when an RDFNode required to be a Resource isn't, or when a Node supposed to be a resource isn't.
RSIterator.javaInterface An RSIterator is a ClosableIterator (qv) which delivers only ReifedStatement's and which has a next-method with that return type.
Schema.javaInterface
Selector.javaInterface A Statement selector.

Model includes list and query methods which will return all the statements which are selected by a selector object.

Seq.javaInterface RDF Sequence container.

This interface defines methods for accessing RDF Sequence resources. These methods operate on the RDF statements contained in a model.

SeqIndexBoundsException.javaClass Exception to throw when the index of a sequence is not in range.
SimpleSelector.javaClass A general selector class for use when querying models.

An instance of this class is passed with query calls to models.

Statement.javaInterface An RDF Statement.

A Statement is not a Resource, but can produce a ReifiedStatement that represents it and from which the Statement can be recovered.

A statement instance tracks which model created it, if any.

StatementBoundary.javaInterface An interface for expressing search boundaries in terms of bounding statements.
StatementBoundaryBase.javaClass StatementBoundaryBase - a base class for StatementBoundarys, with built-in converstion to triples and a continueWith as well as a stopAt.
StatementTripleBoundary.javaClass StatementTripleBoundary - a StatementBoundary that just wraps a TripleBoundary.
StmtIterator.javaInterface An iterator which returns RDF Statements.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.