org.apache.solr.analysis

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 » apache solr 1.2.0 » org.apache.solr.analysis 
org.apache.solr.analysis
Java Source File NameTypeComment
BaseTokenFilterFactory.javaClass Simple abstract implementation that handles init arg processing.
BaseTokenizerFactory.javaClass Simple abstract implementation that handles init arg processing.
BaseTokenTestCase.javaClass
BufferedTokenStream.javaClass
EdgeNGramTokenizerFactory.javaClass Creates new instances of EdgeNGramTokenizer .
EnglishPorterFilterFactory.javaClass
HTMLStripReader.javaClass A Reader that wraps another reader and attempts to strip out HTML constructs.
HTMLStripStandardTokenizerFactory.javaClass
HTMLStripWhitespaceTokenizerFactory.javaClass
HyphenatedWordsFilter.javaClass When the plain text is extracted from documents, we will often have many words hyphenated and broken into two lines.
HyphenatedWordsFilterFactory.javaClass
ISOLatin1AccentFilterFactory.javaClass
KeywordTokenizerFactory.javaClass
LengthFilter.javaClass
LengthFilterFactory.javaClass
LetterTokenizerFactory.javaClass
LowerCaseFilterFactory.javaClass
LowerCaseTokenizerFactory.javaClass
NGramTokenizerFactory.javaClass Creates new instances of NGramTokenizer .
PatternReplaceFilter.javaClass A TokenFilter which applies a Pattern to each token in the stream, replacing match occurances with the specified replacement string.
PatternReplaceFilterFactory.javaClass
PatternTokenizerFactory.javaClass This tokenizer uses regex pattern matching to construct distinct tokens for the input stream.
PhoneticFilter.javaClass Create tokens for phonetic matches.
PhoneticFilterFactory.javaClass
PorterStemFilterFactory.javaClass
RemoveDuplicatesTokenFilter.javaClass A TokenFilter which filters out Tokens at the same position and Term text as the previous token in the stream.
RemoveDuplicatesTokenFilterFactory.javaClass
SnowballPorterFilterFactory.javaClass Factory for SnowballFilters, with configurable language Browsing the code, SnowballFilter uses reflection to adapt to Lucene...
SolrAnalyzer.javaClass
StandardFilterFactory.javaClass
StandardTokenizerFactory.javaClass
StopFilterFactory.javaClass
SynonymFilter.javaClass SynonymFilter handles multi-token synonyms with variable position increment offsets.

The matched tokens from the input stream may be optionally passed through (includeOrig=true) or discarded.

SynonymFilterFactory.javaClass
SynonymMap.javaClass
TestBufferedTokenStream.javaClass Test that BufferedTokenStream behaves as advertised in subclasses.
TestHyphenatedWordsFilter.javaClass
TestPatternReplaceFilter.javaClass
TestPatternTokenizerFactory.javaClass
TestPhoneticFilter.javaClass
TestRemoveDuplicatesTokenFilter.javaClass
TestSynonymFilter.javaClass
TestTrimFilter.javaClass
TestWordDelimiterFilter.javaClass New WordDelimiterFilter tests...
TokenFilterFactory.javaInterface A TokenFilterFactory creates a TokenFilter to transform one TokenStream into another.
TokenizerChain.javaClass
TokenizerFactory.javaInterface A TokenizerFactory breaks up a stream of characters into tokens.
TrimFilter.javaClass Trims leading and trailing whitespace from Tokens in the stream.
TrimFilterFactory.javaClass
WhitespaceTokenizerFactory.javaClass
WordDelimiterFilter.javaClass Splits words into subwords and performs optional transformations on subword groups. Words are split into subwords with the following rules: - split on intra-word delimiters (by default, all non alpha-numeric characters). - "Wi-Fi" -> "Wi", "Fi" - split on case transitions - "PowerShot" -> "Power", "Shot" - split on letter-number transitions - "SD500" -> "SD", "500" - leading and trailing intra-word delimiters on each subword are ignored - "//hello---there, 'dude'" -> "hello", "there", "dude" - trailing "'s" are removed for each subword - "O'Neil's" -> "O", "Neil" - Note: this step isn't performed in a separate filter because of possible subword combinations. The combinations parameter affects how subwords are combined: - combinations="0" causes no subword combinations. - "PowerShot" -> 0:"Power", 1:"Shot" (0 and 1 are the token positions) - combinations="1" means that in addition to the subwords, maximum runs of non-numeric subwords are catenated and produced at the same position of the last subword in the run. - "PowerShot" -> 0:"Power", 1:"Shot" 1:"PowerShot" - "A's+B's&C's" -> 0:"A", 1:"B", 2:"C", 2:"ABC" - "Super-Duper-XL500-42-AutoCoder!" -> 0:"Super", 1:"Duper", 2:"XL", 2:"SuperDuperXL", 3:"500" 4:"42", 5:"Auto", 6:"Coder", 6:"AutoCoder" One use for WordDelimiterFilter is to help match words with different subword delimiters. For example, if the source text contained "wi-fi" one may want "wifi" "WiFi" "wi-fi" "wi+fi" queries to all match. One way of doing so is to specify combinations="1" in the analyzer used for indexing, and combinations="0" (the default) in the analyzer used for querying.
WordDelimiterFilterFactory.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.