com.hp.hpl.jena.graph

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.graph 
com.hp.hpl.jena.graph
graph This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system.
Java Source File NameTypeComment
BulkUpdateHandler.javaInterface Defines how bulk update may be done on Graphs.

Bulk updates are not necessarily transactions; that is, a bulk update may fail part-way through, leaving some but not all triples added or deleted. However, if a bulk update does not fail (ie throw an exception) then the addition or removal of triples must have been successfully completed in accordance with the operation of the owning graph.

Capabilities.javaInterface Interface for expressing capabilities.
Factory.javaClass A factory class for creating Graphs.
FrontsNode.javaInterface HasNode - interface for objects that front a Node in some context.
FrontsTriple.javaInterface FrontsTriple (see also FrontsNode) is an interface for things that can be seen as wrappers round triples.
GetTriple.javaInterface this interface describes types that can have a triple extracted using a getTriple method.
Graph.javaInterface The interface to be satisfied by implementations maintaining collections of RDF triples.
GraphAdd.javaInterface The Add part of Graph's interface.
GraphEventManager.javaInterface The component of a graph responsible for managing events and listeners. The interface extends GraphListener because most of the notificiations are the same; the special case to note is that an event manager expects to be handed iterator events as lists, not as iterators.
GraphEvents.javaClass GraphEvents is the base class for Jena general graph events.
GraphExtract.javaClass GraphExtract offers a very simple recursive extraction of a subgraph with a specified root in some supergraph.
GraphListener.javaInterface Interface for listening to graph-level update events.
GraphMaker.javaInterface A factory for providing instances of named graphs with appropriate storage models. It represents a directory, or a database, or a mapping: names map to graphs for the lifetime of the GraphMaker.
GraphStatisticsHandler.javaInterface A graph's StatisticsHandler offers access to some statistics about that graph's contents that might be useful for optimisation.
GraphUtil.javaClass An ad-hoc collection of useful code for graphs; starting with findAll, which is graph-specific, and extending to iteratorToSet and iteratorToList, which are here because they are used in tests and in the bulk update handlers.
Node.javaClass A Node has five subtypes: Node_Blank, Node_Anon, Node_URI, Node_Variable, and Node_ANY. Nodes are only constructed by the node factory methods, and they will attempt to re-use existing nodes with the same label if they are recent enough.
NodeCache.javaClass A NodeCache caches nodes according to their labels, to reduce store turnover at the expense of some additional computation.
NodeVisitor.javaInterface The NodeVisitor interface is used by Node::visitWith so that an application can have type-dispatch on the class of a Node.
Node_ANY.javaClass A Node_ANY (there should be only one) is a meta-node that is used to stand for any other node in a query.
Node_Blank.javaClass RDF blank nodes, ie nodes with identity but without URIs.
Node_Concrete.javaClass This is the class of "concrete" nodes, ie those which correspond to actual RDF data - URIs, blank nodes, and literals.
Node_Fluid.javaClass This is the subclass of "fluid" nodes, ie nodes that are "holes" in pattern matching.
Node_Literal.javaClass An RDF node holding a literal value.
Node_NULL.javaClass The Highlander Node_NULL exists for the database code (as a Node that coresponds to a null in database tables for the reification code).
Node_URI.javaClass RDF nodes with a global identity given by a URI.
Node_Variable.javaClass "variable" nodes; these are outside the RDF2003 specification, but are used internally for "placeholder" nodes where blank nodes would be wrong, most specifically in Query.
Reifier.javaInterface This interface represents the type of things that can hold reified triples for a Jena Graph.
TransactionHandler.javaInterface Preliminary interface for graphs supporting transactions.
Triple.javaClass Triples are the basis for RDF statements; they have a subject, predicate, and object field (all nodes) and express the notion that the relationship named by the predicate holds between the subject and the object.
TripleBoundary.javaInterface An interface for expressing a stopping condition on triples, such as in sub-graph extraction.
TripleCache.javaClass TripleCache caches triples according to their SPO members, to reduce store turnover at the expense of some added computation.
TripleIterator.javaInterface An extended iterator that can return its next element as a Triple.
TripleMatch.javaInterface Interface for triple matching; may become obsolete.
TripleMatchFilter.javaClass A class to turn a triple (treated as a pattern) into a Filter.
TripleMatchIterator.javaClass An iterator that selects triples from an underlying iterators of triples It used to take TripleMatch's, but those are obsolete.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.