| /lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/ |
| H A D | BrazilianStemFilterFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 37 public BrazilianStemFilter create(TokenStream in) { argument 38 return new BrazilianStemFilter(in);
|
| H A D | CJKTokenizerFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 37 public CJKTokenizer create(Reader in) { argument 38 return new CJKTokenizer(in);
|
| H A D | GermanStemFilterFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 38 public GermanStemFilter create(TokenStream in) { argument 39 return new GermanStemFilter(in);
|
| H A D | ReverseStringFilterFactory.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 37 public ReverseStringFilter create(TokenStream in) { argument 39 return new ReverseStringFilter(luceneMatchVersion,in);
|
| H A D | ChineseFilterFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 38 public ChineseFilter create(TokenStream in) { argument 39 return new ChineseFilter(in);
|
| H A D | ChineseTokenizerFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 39 public ChineseTokenizer create(Reader in) { argument 40 return new ChineseTokenizer(in);
|
| H A D | FrenchStemFilterFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 40 public TokenFilter create(TokenStream in) { argument 41 return new SnowballFilter(in, new org.tartarus.snowball.ext.FrenchStemmer());
|
| H A D | GreekLowerCaseFilterFactory.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 52 public GreekLowerCaseFilter create(TokenStream in) { argument 53 return new GreekLowerCaseFilter(luceneMatchVersion, in);
|
| H A D | KeepWordFilter.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 29 * A TokenFilter that only keeps tokens with text contained in the 41 public KeepWordFilter(TokenStream in, Set<String> words, boolean ignoreCase ) { argument 42 this(false, in, new CharArraySet(words, ignoreCase)); 47 public KeepWordFilter(boolean enablePositionIncrements, TokenStream in, CharArraySet words) { argument 48 super(enablePositionIncrements, in);
|
| H A D | PhoneticFilter.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 30 public PhoneticFilter(TokenStream in, Encoder encoder, String name, boolean inject) { argument 31 super(in, encoder, inject);
|
| H A D | RussianLetterTokenizerFactory.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 44 public RussianLetterTokenizer create(Reader in) { argument 45 return new RussianLetterTokenizer(luceneMatchVersion,in);
|
| H A D | RussianLowerCaseFilterFactory.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 45 public TokenFilter create(TokenStream in) { argument 47 return new LowerCaseFilter(Version.LUCENE_29, in);
|
| H A D | RussianStemFilterFactory.java | 7 * (the "License"); you may not use this file except in compliance with 12 * Unless required by applicable law or agreed to in writing, software 41 public TokenFilter create(TokenStream in) { argument 42 return new SnowballFilter(in, new org.tartarus.snowball.ext.RussianStemmer());
|
| H A D | TrimFilter.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 28 * Trims leading and trailing whitespace from Tokens in the stream. 39 public TrimFilter(TokenStream in, boolean updateOffsets) { argument 40 super(in);
|
| /lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/ |
| H A D | IntDecoder.java | 11 * (the "License"); you may not use this file except in compliance with 16 * Unless required by applicable law or agreed to in writing, software 36 protected InputStream in; field in class:IntDecoder 39 public void reInit(InputStream in) { argument 40 this.in = in;
|
| /lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/ |
| H A D | KeywordMarkerFilter.java | 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 29 * contained in the provided is marked as a keyword by setting 42 * keyword if the tokens term buffer is contained in the given set via the 45 * @param in 50 public KeywordMarkerFilter(final TokenStream in, argument 52 super(in); 58 * keyword if the tokens term buffer is contained in the given set via the 61 * @param in 66 public KeywordMarkerFilter(final TokenStream in, fina argument [all...] |
| H A D | LimitTokenCountFilter.java | 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 34 public LimitTokenCountFilter(TokenStream in, int maxTokenCount) { argument 35 super(in);
|
| H A D | LowerCaseFilter.java | 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 43 * @param in TokenStream to filter 45 public LowerCaseFilter(Version matchVersion, TokenStream in) { argument 46 super(in); 54 public LowerCaseFilter(TokenStream in) { argument 55 this(Version.LUCENE_30, in);
|
| H A D | PorterStemFilter.java | 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 26 Note: the input to the stemming filter must already be in lower case, 28 down the Tokenizer chain in order for this to work properly! 46 in a previous {@link TokenStream}. 54 public PorterStemFilter(TokenStream in) { argument 55 super(in);
|
| /lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/ |
| H A D | IndexFormatTooNewException.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 36 public IndexFormatTooNewException(DataInput in, int version, int minVersion, int maxVersion) { argument 37 this(in.toString(), version, minVersion, maxVersion);
|
| H A D | IndexFormatTooOldException.java | 6 * (the "License"); you may not use this file except in compliance with 11 * Unless required by applicable law or agreed to in writing, software 36 public IndexFormatTooOldException(DataInput in, String version) { argument 37 this(in.toString(), version); 49 public IndexFormatTooOldException(DataInput in, int version, int minVersion, int maxVersion) { argument 50 this(in.toString(), version, minVersion, maxVersion);
|
| /lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/in/ |
| H A D | IndicNormalizationFilter.java | 1 package org.apache.lucene.analysis.in; 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 28 * in Indian Languages.
|
| /lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/ru/ |
| H A D | RussianLowerCaseFilter.java | 8 * (the "License"); you may not use this file except in compliance with 13 * Unless required by applicable law or agreed to in writing, software 30 * functionality. This filter will be removed in Lucene 4.0 37 public RussianLowerCaseFilter(TokenStream in) argument 39 super(in);
|
| /lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/ |
| H A D | Gener.java | 10 are the people or entities mentioned as copyright holders in that file 12 whole, the copyright holders are the people or entities mentioned in 13 the file CREDITS. This file can be found in the same location as this 14 license in the distribution. 16 Redistribution and use in source and binary forms, with or without 22 2. Redistributions in binary form must reproduce the above copyright 24 disclaimer that follows these conditions in the documentation 30 nor may "Egothor" appear in their name, without prior written 33 In addition, we request that you include in the end-user documentation 34 provided with the redistribution and/or in th 107 eat(Row in, int remap[]) argument [all...] |
| H A D | Lift.java | 10 are the people or entities mentioned as copyright holders in that file 12 whole, the copyright holders are the people or entities mentioned in 13 the file CREDITS. This file can be found in the same location as this 14 license in the distribution. 16 Redistribution and use in source and binary forms, with or without 22 2. Redistributions in binary form must reproduce the above copyright 24 disclaimer that follows these conditions in the documentation 30 nor may "Egothor" appear in their name, without prior written 33 In addition, we request that you include in the end-user documentation 34 provided with the redistribution and/or in th 114 liftUp(Row in, List<Row> nodes) argument [all...] |