Source Code Cross Referenced for QueryHandler.java in  » RSS-RDF » Jena-2.5.5 » com » hp » hpl » jena » graph » query » 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.query 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:          (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
003:          [See end of file]
004:          $Id: QueryHandler.java,v 1.19 2008/01/02 12:07:58 andy_seaborne Exp $
005:         */
006:
007:        package com.hp.hpl.jena.graph.query;
008:
009:        import com.hp.hpl.jena.graph.*;
010:        import com.hp.hpl.jena.util.iterator.*;
011:
012:        /**
013:         a QueryHandler handles queries on behalf of a graph. It's primary purpose
014:         is to isolate changes to the query interface away from the Graph; multiple
015:         different Graph implementations can use the same QueryHandler class, such
016:         as the built-in SimpleQueryHandler.
017:
018:         @author kers
019:         */
020:
021:        public interface QueryHandler {
022:            /**
023:                prepare a plan for generating bindings given the query _q_ and the result
024:                variables _variables_.
025:             */
026:            public BindingQueryPlan prepareBindings(Query q, Node[] variables);
027:
028:            /**
029:                produce a single Stage which will probe the underlying graph for triples
030:                matching p and inject all the resulting bindings into the processing stream
031:                (see Stage for details)
032:            <p>
033:                _map_ is the variable binding map to use and update. _constraints_ is
034:                the current constraint expression: if this Stage can absorb some of the 
035:                ANDed constraints, it may do so, and remove them from the ExpressionSet.
036:             */
037:            public Stage patternStage(Mapping map, ExpressionSet constraints,
038:                    Triple[] p);
039:
040:            /**
041:            	deliver a plan for executing the tree-match query defined by _pattern_.
042:             */
043:            public TreeQueryPlan prepareTree(Graph pattern);
044:
045:            /**
046:            	deliver an iterator over all the objects _o_ such that _(s, p, o)_ is in the
047:            	underlying graph; nulls count as wildcards.  .remove() is not defined 
048:                on this iterator.
049:             */
050:            public ExtendedIterator objectsFor(Node s, Node p);
051:
052:            /**
053:            	deliver an iterator over all the subjects _s_ such that _(s, p, o)_ is in the
054:            	underlying graph; nulls count as wildcards.  .remove() is not defined 
055:                on this iterator.
056:             */
057:            public ExtendedIterator subjectsFor(Node p, Node o);
058:
059:            /**
060:                 Answer an iterator over all the predicates <code>p</code> such that
061:                 <code>(s, p, o)</code> is in the underlying graph.  .remove() is not 
062:                 defined on this iterator.
063:             */
064:            public ExtendedIterator predicatesFor(Node s, Node o);
065:
066:            /**
067:                true iff the graph contains a triple in which n appears somewhere.
068:                if n is a fluid node, it is not defined whether true or false is returned,
069:                so don't do that.
070:             */
071:            public boolean containsNode(Node n);
072:
073:        }
074:
075:        /*
076:         (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
077:         All rights reserved.
078:
079:         Redistribution and use in source and binary forms, with or without
080:         modification, are permitted provided that the following conditions
081:         are met:
082:
083:         1. Redistributions of source code must retain the above copyright
084:         notice, this list of conditions and the following disclaimer.
085:
086:         2. Redistributions in binary form must reproduce the above copyright
087:         notice, this list of conditions and the following disclaimer in the
088:         documentation and/or other materials provided with the distribution.
089:
090:         3. The name of the author may not be used to endorse or promote products
091:         derived from this software without specific prior written permission.
092:
093:         THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
094:         IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
095:         OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
096:         IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
097:         INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
098:         NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
099:         DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
100:         THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
101:         (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
102:         THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
103:         */
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.