Java Doc for Reifier.java in  » RSS-RDF » Jena-2.5.5 » com » hp » hpl » jena » graph » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.hp.hpl.jena.graph.Reifier

All known Subclasses:   com.hp.hpl.jena.graph.impl.SimpleReifier,  com.hp.hpl.jena.reasoner.rulesys.BasicFBReifier,  com.hp.hpl.jena.graph.impl.WrappedReifier,  com.hp.hpl.jena.db.impl.DBReifier,
Reifier
public interface Reifier extends GetTriple(Code)
This interface represents the type of things that can hold reified triples for a Jena Graph.
author:
   kers

Inner Class :public static class Util



Method Summary
 ExtendedIteratorallNodes()
     return an iterator over all the nodes that are reifiying something in this reifier.
 ExtendedIteratorallNodes(Triple t)
     return an iterator over all the nodes that are reifiying t in this reifier.
 voidclose()
     The reifier will no longer be used.
 ExtendedIteratorfind(TripleMatch m)
     Answer an iterator over all the reification triples in this Reifier that match m.
 ExtendedIteratorfindEither(TripleMatch m, boolean showHidden)
     Answer an iterator over the reification triples of this Reifier, or an empty iterator - if showHidden is false, only the exposed triples, otherwise only the concealed ones.
 ExtendedIteratorfindExposed(TripleMatch m)
     Answer an iterator over all the reification triples that this Reifier exposes (ie all if Standard, none otherwise) that match m.
 GraphgetParentGraph()
     get the Graph which uses this reifier.
 ReificationStylegetStyle()
     Answer this reifier's style.
 booleanhandledAdd(Triple t)
     true iff the Reifier has handled an add of the triple _t_.
 booleanhandledRemove(Triple t)
     true iff the Reifier has handled a remove of the triple _t_.
 booleanhasTriple(Node n)
     true iff _n_ is associated with some triple.
 booleanhasTriple(Triple t)
    
 NodereifyAs(Node n, Triple t)
     note the triple _t_ as reified using _n_ as its representing node.
 voidremove(Node n, Triple t)
     remove any existing binding for _n_; hasNode(n) will return false and getTriple(n) will return null.
 voidremove(Triple t)
     remove all bindings which map to this triple.
 intsize()
     Answer the number of exposed reification quadlets held in this reifier.



Method Detail
allNodes
ExtendedIterator allNodes()(Code)
return an iterator over all the nodes that are reifiying something in this reifier.



allNodes
ExtendedIterator allNodes(Triple t)(Code)
return an iterator over all the nodes that are reifiying t in this reifier.



close
void close()(Code)
The reifier will no longer be used. Further operations on it are not defined by this interface.



find
ExtendedIterator find(TripleMatch m)(Code)
Answer an iterator over all the reification triples in this Reifier that match m.



findEither
ExtendedIterator findEither(TripleMatch m, boolean showHidden)(Code)
Answer an iterator over the reification triples of this Reifier, or an empty iterator - if showHidden is false, only the exposed triples, otherwise only the concealed ones.



findExposed
ExtendedIterator findExposed(TripleMatch m)(Code)
Answer an iterator over all the reification triples that this Reifier exposes (ie all if Standard, none otherwise) that match m.



getParentGraph
Graph getParentGraph()(Code)
get the Graph which uses this reifier.



getStyle
ReificationStyle getStyle()(Code)
Answer this reifier's style.



handledAdd
boolean handledAdd(Triple t)(Code)
true iff the Reifier has handled an add of the triple _t_.



handledRemove
boolean handledRemove(Triple t)(Code)
true iff the Reifier has handled a remove of the triple _t_.



hasTriple
boolean hasTriple(Node n)(Code)
true iff _n_ is associated with some triple.



hasTriple
boolean hasTriple(Triple t)(Code)
true iff there's > 0 mappings to this triple



reifyAs
Node reifyAs(Node n, Triple t)(Code)
note the triple _t_ as reified using _n_ as its representing node. If _n_ is already reifying something, a AlreadyReifiedException is thrown.



remove
void remove(Node n, Triple t)(Code)
remove any existing binding for _n_; hasNode(n) will return false and getTriple(n) will return null. This only removes *unique, single* bindings.



remove
void remove(Triple t)(Code)
remove all bindings which map to this triple.



size
int size()(Code)
Answer the number of exposed reification quadlets held in this reifier.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.