Source Code Cross Referenced for TermMap.java in  » Search-Engine » mg4j » it » unimi » dsi » mg4j » index » 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 » mg4j » it.unimi.dsi.mg4j.index 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package it.unimi.dsi.mg4j.index;
02:
03:        /*		 
04:         * MG4J: Managing Gigabytes for Java
05:         *
06:         * Copyright (C) 2005-2007 Sebastiano Vigna 
07:         *
08:         *  This library is free software; you can redistribute it and/or modify it
09:         *  under the terms of the GNU Lesser General Public License as published by the Free
10:         *  Software Foundation; either version 2.1 of the License, or (at your option)
11:         *  any later version.
12:         *
13:         *  This library is distributed in the hope that it will be useful, but
14:         *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15:         *  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
16:         *  for more details.
17:         *
18:         *  You should have received a copy of the GNU Lesser General Public License
19:         *  along with this program; if not, write to the Free Software
20:         *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21:         *
22:         */
23:
24:        import it.unimi.dsi.mg4j.util.MutableString;
25:        import it.unimi.dsi.util.StringMap;
26:
27:        /** A map from terms to numbers (and possibly viceversa).
28:         * 
29:         * <p>The possibility of retrieving terms can be checked for by calling {@link #hasTerms()}.
30:         * 
31:         * @author Sebastiano Vigna 
32:         * @since 0.9.2
33:         * @deprecated As of MG4J 2.1, replaced by {@link StringMap}.
34:         */
35:
36:        @Deprecated
37:        public interface TermMap {
38:
39:            /** Returns the ordinal number corresponding to the given term, or possibly (but not necessarily) -1 if the term was not indexed.
40:             * 
41:             * <p>We intentionally prefer &ldquo;ordinal number&rdquo; to &ldquo;index&rdquo; because of the obvious
42:             * confusion that the latter term can cause.
43:             * 
44:             * @param term a term.
45:             * @return its ordinal number, or possibly (but not necessarily) -1 if the term was not indexed.
46:             */
47:            public int getNumber(CharSequence term);
48:
49:            /** Returns true if this prefix map supports {@linkplain #getTerm(int) term retrieval}. 
50:             * 
51:             * @return true if this prefix map supports {@linkplain #getTerm(int) term retrieval}.
52:             */
53:
54:            public boolean hasTerms();
55:
56:            /** Returns the term corresponding to the given ordinal number (optional operation).
57:             * 
58:             * @param number a term ordinal number.
59:             * @return the corresponding term, or possibly (but not necessarily) <code>null</code> if the term was not indexed.
60:             */
61:
62:            public CharSequence getTerm(int number);
63:
64:            /** Writes in the given mutable string the term corresponding to the given ordinal number (optional operation).
65:             * 
66:             * @param number a term ordinal number.
67:             * @param term a mutable string that will be filled with the corresponding term.
68:             * @return <code>term</code>, or possibly (but not necessarily) <code>null</code> if the term was not indexed.
69:             */
70:
71:            public MutableString getTerm(int number, MutableString term);
72:
73:            /** Returns the number of terms in this term map. 
74:             * @return the number of terms in this term map.
75:             */
76:            public int size();
77:
78:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.