Source Code Cross Referenced for FindableModel.java in  » Search-Engine » semweb4j » org » ontoware » rdf2go » model » 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 » Search Engine » semweb4j » org.ontoware.rdf2go.model 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * LICENSE INFORMATION
003:         * Copyright 2005-2007 by FZI (http://www.fzi.de).
004:         * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
005:         * <OWNER> = Max Völkel
006:         * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
007:         * <YEAR> = 2007
008:         * 
009:         * Project information at http://semweb4j.org/rdf2go
010:         */
011:        package org.ontoware.rdf2go.model;
012:
013:        import org.ontoware.aifbcommons.collection.ClosableIterator;
014:        import org.ontoware.rdf2go.exception.ModelRuntimeException;
015:        import org.ontoware.rdf2go.model.node.NodeOrVariable;
016:        import org.ontoware.rdf2go.model.node.ResourceOrVariable;
017:        import org.ontoware.rdf2go.model.node.UriOrVariable;
018:
019:        /**
020:         * A model where you can list all statements, find statements and check if a
021:         * statement is contained.
022:         * 
023:         * @author voelkel
024:         * 
025:         */
026:        public interface FindableModel {
027:
028:            /**
029:             * get all statements in the model with this subject, predicate and object.
030:             * Each of those (s,p,o) can be Variable.ANY
031:             * 
032:             * Iterator must be auto-close, i.e. when last element is fetched, the
033:             * implementation must call close().
034:             * 
035:             * @param subject
036:             *            URI or Object (= blankNode) or Variable
037:             * @param predicate
038:             *            URI or Variable
039:             * @param object
040:             *            URI or String (=plainLiteral) or BlankNode (=blankNode) or
041:             *            TypedLiteral or LanguageTagLiteral or Variable
042:             * @return a statement iterator
043:             * @throws ModelRuntimeException
044:             */
045:            public ClosableIterator<Statement> findStatements(
046:                    ResourceOrVariable subject, UriOrVariable predicate,
047:                    NodeOrVariable object) throws ModelRuntimeException;
048:
049:            /**
050:             * Iterator must be auto-close, i.e. when last element is fetched, the
051:             * implementation must call close().
052:             * @param pattern
053:             * @return statement iterator returning all triples matching the given
054:             *          pattern
055:             * @throws ModelRuntimeException
056:             */
057:            public ClosableIterator<Statement> findStatements(
058:                    TriplePattern pattern) throws ModelRuntimeException;
059:
060:            // ////////////////////////////
061:            // counting
062:
063:            /**
064:             * @return the number of statements in the model matching the query
065:             */
066:            public long countStatements(TriplePattern pattern)
067:                    throws ModelRuntimeException;
068:
069:            /**
070:             * @param subject
071:             * @param predicate
072:             * @param object
073:             * @return true if the statement (subject, predicate, object) is in the
074:             *         model
075:             * @throws ModelRuntimeException
076:             */
077:            public boolean contains(ResourceOrVariable subject,
078:                    UriOrVariable predicate, NodeOrVariable object)
079:                    throws ModelRuntimeException;
080:
081:            /**
082:             * Convenience function.
083:             * @param subject
084:             * @param predicate
085:             * @param plainLiteral
086:             * @return true if model contains statement (s,p,'o')
087:             * @throws ModelRuntimeException
088:             */
089:            public boolean contains(ResourceOrVariable subject,
090:                    UriOrVariable predicate, String plainLiteral)
091:                    throws ModelRuntimeException;
092:
093:            /**
094:             * @param s a Statement
095:             * @return true if the model contains a statement s
096:             * @throws ModelRuntimeException
097:             */
098:            public boolean contains(Statement s) throws ModelRuntimeException;
099:
100:            /**
101:             * @param subject
102:             * @param predicate
103:             * @param object
104:             * @return a triple pattern
105:             */
106:            public TriplePattern createTriplePattern(
107:                    ResourceOrVariable subject, UriOrVariable predicate,
108:                    NodeOrVariable object);
109:
110:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.