Source Code Cross Referenced for ConvertingIterator.java in  » Search-Engine » semweb4j » org » ontoware » rdf2go » util » 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.util 
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.util;
012:
013:        import java.util.Iterator;
014:
015:        /**
016:         * An iterator that converts from "FROM" to "TO", by wrapping an existing
017:         * iterator. This is needed when converting statements or resource-uris from one
018:         * iterator to another, for the Adapter implementations. You still have to
019:         * implement the "convert" method, but the handling of the Java generics is
020:         * done.
021:         * 
022:         * @author sauermann <leo.sauermann@dfki.de>
023:         * @param <FROM>
024:         *            The class that is the source of conversion
025:         * @param <TO>
026:         *            The class that is converted to
027:         * 
028:         * Note: as this class is not RDF-specific in any way it is a good candidate for
029:         * AIFBcommons.
030:         */
031:        public class ConvertingIterator<FROM, TO> implements  Iterator<TO> {
032:
033:            Iterator<FROM> wrapped;
034:
035:            Converter<FROM, TO> converter;
036:
037:            /**
038:             * The iterator takes the wrapped class and converts it to other classes on
039:             * the fly. You have to override the "convert" method, though.
040:             * 
041:             * @param wrapped
042:             *            the wrapped iterator
043:             */
044:            public ConvertingIterator(Iterator<FROM> wrapped) {
045:                this .wrapped = wrapped;
046:            }
047:
048:            /**
049:             * The iterator takes the wrapped class and converts it to other classes on
050:             * the fly. Pass a converter that handles the conversion.
051:             * 
052:             * @param wrapped
053:             *            the wrapped iterator
054:             * @param converter
055:             *            the converter
056:             */
057:            public ConvertingIterator(Iterator<FROM> wrapped,
058:                    Converter<FROM, TO> converter) {
059:                this .wrapped = wrapped;
060:                this .converter = converter;
061:            }
062:
063:            /**
064:             * @see java.util.Iterator#hasNext()
065:             */
066:            public boolean hasNext() {
067:                return this .wrapped.hasNext();
068:            }
069:
070:            /**
071:             * @see java.util.Iterator#next()
072:             */
073:            public TO next() {
074:                FROM next = this .wrapped.next();
075:                return convert(next);
076:            }
077:
078:            /**
079:             * convert the passed object to the outgoing object
080:             * 
081:             * @param next
082:             *            the next object to convert
083:             * @return the converted object
084:             */
085:            public TO convert(FROM next) {
086:                if (this .converter == null)
087:                    throw new RuntimeException(
088:                            "you have to override the convert() method or pass in a converter.");
089:                TO result = this .converter.convert(next);
090:                return result;
091:            }
092:
093:            /**
094:             * @see java.util.Iterator#remove()
095:             */
096:            public void remove() {
097:                this.wrapped.remove();
098:            }
099:
100:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.