com.hp.hpl.jena.graph.query

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 
com.hp.hpl.jena.graph.query
graph.query Defines the graph-level Query classes, allowing multi-pattern query over arbitrary graphs.
Java Source File NameTypeComment
Applyer.javaClass An Applyer object will run the StageElement next over all the extensions of the Domain d which are derived from applying the Matcher m to some internal supply of triples.
Bind.javaClass A binding instance of a variable.
BindingQueryPlan.javaInterface A BindingQueryPlan is something that can run executeBindings() to get back an ExtendedIterator over Domains, ie, Lists.
Bound.javaClass An element which represents an already-bound variable.
BufferPipe.javaClass This class is a pipe between query threads, implemented as a bounded buffer.
ConstraintStage.javaClass A ConstraintStage implements the constraint evaluation part of a query.
Domain.javaClass A Domain is an answer to a Binding query.
Dyadic.javaClass A base class for dyadic expressions with a built-in Valuator; subclasses must define an evalObject or evalBool method which will be supplied with the evaluated operands.
Element.javaClass An Element of a matching triple.
Expression.javaInterface Expression - the interface for expressions that is expected by Query for constraints.
ExpressionFunctionURIs.javaInterface ExpressionFunctionURIs: constants expressing the URIs for functions that may be recognised or generated by expression constructors and analysers.
ExpressionSet.javaClass ExpressionSet: represent a set of (boolean) expressions ANDed together.
Fixed.javaClass An Element that matches a single specified value.
FixedValuator.javaClass A FixedValuator is a Valuator that delivers a constant value (supplied when it is constructed).
GuardArranger.javaClass A GuardArranger is initialised with a set of triple patterns, and can then turn a set of constraints (plus a map giving the location of variables) into an array of guards, where the i'th element of the array is the set of constraints that can be evaluated as soon as the i'th triple-pattern has been processed.
IndexValues.javaInterface IndexValues: something that when supplied with a non-negative integer, returns a value.
InitialStage.javaClass The initial stage of a query, responsible for dropping the no-variables-bound seed binding domain into the remaining stages of the query pipeline.
Mapping.javaClass this class is used to record the mapping from [variable] Node's to the indexes they are bound to in a Query.
Matcher.javaClass A Matcher knows how to match itself against a concrete triple (the triple to be matched) and a domain (of bindings to check and extend).
NamedGraphMap.javaClass a mapping from from names to Graphs.
NamedTripleBunches.javaClass A NamedTripleBunches maps a [graph] name to a bunch of triples associated with that name.
Pattern.javaClass A Pattern represents a matching triple; it is composed of S, P, and O Elements.
PatternCompiler.javaInterface A PatternCompiler is some class that knows how to handle fixed Node values, binding and bound occurences of variables, and wildcards.
PatternLiteral.javaInterface PatternLiteral - an interface for pattern literals recognised by Rewrite.
PatternStage.javaClass A PatternStage is a Stage that handles some bunch of related patterns; those patterns are encoded as Triples.
PatternStageBase.javaClass PatternStageBase contains the features that are common to the traditional PatternStage engine and the Faster engine.
PatternStageCompiler.javaClass PatternStageCompiler serves two purposes: it contains the standard algorithm for compiling patterns-as-triples to patterns-as-Pattern(s), and it has the standard implementation of PatternCompiler in terms of ordinary Elements.
Pipe.javaInterface A Pipe is anything that can be used to get and put Domain objects; it can be closed, and it can be tested for whether more elements are available.
Query.javaClass The class of graph queries, plus some machinery (which should move) for implementing them.
QueryHandler.javaInterface a QueryHandler handles queries on behalf of a graph.
QueryNode.javaClass A QueryNode is a wrapped node that has been processed against some variable-binding map to discover (a) what kind of node it is and (b) what index in the binding map it has.
QueryNodeFactory.javaInterface
QueryNodeFactoryBase.javaClass A base-level implementation of the QueryNodeFactory that uses the QueryNode/QueryTriple classes directly.
QueryTriple.javaClass A QueryTriple is a composite of three QueryNodes derived from a single source triple.
Rewrite.javaClass
SimpleQueryEngine.javaClass
SimpleQueryHandler.javaClass A SimpleQueryHandler is a more-or-less straightforward implementation of QueryHandler suitable for use on graphs with no special query engines.
SimpleQueryPlan.javaClass SimpleQueryPlan is an implementation of QueryPlan which uses the engine defined in Query to do the work.
SimpleTreeQueryPlan.javaClass Incomplete class.
SimpleTripleSorter.javaClass A TripleSorter for "optimising" queries.
SlotValuator.javaClass A SlotValuator evaluates to a specific slot in the index values bindings.
Stage.javaClass a processing stage in the query pipeline.
StageElement.javaClass Class used internally by PatternStage to express the notion of "the runnable next component in this stage".
TreeQueryPlan.javaInterface
TripleSorter.javaInterface Interface for things that can sort triples (for optimising queries).
Util.javaClass Util: some utility code used by graph query that doesn't seem to belong anywhere else that it can be put.
Valuator.javaInterface Valuator - an interface for things that evaluate to some value, given a binding of variable (inexes) to values.
ValuatorSet.javaClass ValuatorSet - a set of Valuators, which can be added to and evaluated [only].
VariableIndexes.javaInterface VariableIndexes: a mapping from variable names to their offsets in some table of variable values.
VariableValues.javaInterface The interface that allows the values of variables in expressions to be found.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.