Searched defs:get (Results 1 - 25 of 97) sorted by relevance

1234

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/
H A DLucenePackage.java26 public static Package get() { method in class:LucenePackage
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DSetOnce.java74 public final T get() { method in class:SetOnce
H A DBits.java26 public boolean get(int index); method in interface:Bits
41 public boolean get(int index) { method in class:Bits.MatchAllBits
60 public boolean get(int index) { method in class:Bits.MatchNoBits
H A DCloseableThreadLocal.java64 // Increase this to decrease frequency of purging in get:
67 // On each get or set we decrement this; when it hits 0 we
77 public T get() { method in class:CloseableThreadLocal
78 WeakReference<T> weakRef = t.get();
89 return weakRef.get();
H A DCounter.java44 public abstract long get(); method in class:Counter
74 public long get() { method in class:Counter.SerialCounter
88 public long get() { method in class:Counter.AtomicCounter
89 return count.get();
H A DDoubleBarrelLRUCache.java29 * is secondary. {@link #get} first checks primary, and if
67 public V get(K key) { method in class:DoubleBarrelLRUCache
79 V result = primary.get(key);
82 result = secondary.get(key);
H A DRollingCharBuffer.java63 public int get(int pos) throws IOException { method in class:RollingCharBuffer
64 //System.out.println(" get pos=" + pos + " nextPos=" + nextPos + " count=" + count);
117 public char[] get(int posStart, int length) { method in class:RollingCharBuffer
120 //System.out.println(" buffer.get posStart=" + posStart + " len=" + length);
/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DDiffIt.java69 static int get(int i, String s) { method in class:DiffIt
88 int ins = get(0, args[0]);
89 int del = get(1, args[0]);
90 int rep = get(2, args[0]);
91 int nop = get(3, args[0]);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/highlight/
H A DSolrBoundaryScanner.java32 return get(fieldName, params);
35 protected abstract BoundaryScanner get(String fieldName, SolrParams params); method in class:SolrBoundaryScanner
H A DBreakIteratorBoundaryScanner.java32 protected BoundaryScanner get(String fieldName, SolrParams params) { method in class:BreakIteratorBoundaryScanner
H A DSimpleBoundaryScanner.java27 protected BoundaryScanner get(String fieldName, SolrParams params) { method in class:SimpleBoundaryScanner
/lucene-3.6.0/solr/core/src/java/org/apache/solr/request/
H A DServletSolrParams.java33 public String get(String name) { method in class:ServletSolrParams
34 String[] arr = map.get(name);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/cache/
H A DCategoryListCache.java42 public CategoryListData get(CategoryListParams clp) { method in class:CategoryListCache
43 return cldMap.get(clp);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/
H A DTaxonomyWriterCache.java28 * It basically has put() methods for adding a mapping, and get() for looking
32 * This means that if get() returns a negative response, it does not
62 public int get(CategoryPath categoryPath); method in interface:TaxonomyWriterCache
65 * Like {@link #get(CategoryPath)}, but for a given prefix of the
71 public int get(CategoryPath categoryPath, int length); method in interface:TaxonomyWriterCache
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DFieldSettings.java37 FieldSetting setting = fieldSettings.get(fieldSetting.fieldName);
76 FieldSetting get(String name) { method in class:FieldSettings
77 return fieldSettings.get(name);
80 FieldSetting get(String name, boolean create) { method in class:FieldSettings
81 FieldSetting fieldSetting = fieldSettings.get(name);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/util/
H A DRefCounted.java43 return refcount.get();
51 public final Type get() { method in class:RefCounted
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/params/
H A DDefaultSolrParams.java42 public String get(String param) { method in class:DefaultSolrParams
43 String val = params.get(param);
44 return val!=null ? val : defaults.get(param);
H A DMapSolrParams.java37 public String get(String name) { method in class:MapSolrParams
38 return map.get(name);
43 String val = map.get(name);
H A DMultiMapSolrParams.java33 String[] arr = map.get(name);
50 public String get(String name) { method in class:MultiMapSolrParams
51 String[] arr = map.get(name);
57 return map.get(name);
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/config/
H A DAbstractQueryConfig.java28 * It has operations to set, unset and get configuration values.
57 public <T> T get(ConfigurationKey<T> key) { method in class:AbstractQueryConfig
63 return (T) this.configMap.get(key);
79 public <T> T get(ConfigurationKey<T> key, T defaultValue) { method in class:AbstractQueryConfig
86 return (T) this.configMap.get(key);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DCharReader.java33 public static CharStream get(Reader input) { method in class:CharReader
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/packed/
H A DDirect16.java71 public long get(final int index) { method in class:Direct16
H A DDirect32.java67 public long get(final int index) { method in class:Direct32
H A DDirect64.java63 public long get(final int index) { method in class:Direct64
H A DDirect8.java72 public long get(final int index) { method in class:Direct8

Completed in 59 milliseconds

1234