Searched defs:close (Results 1 - 25 of 223) sorted by relevance

123456789

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/encoding/
H A DIntEncoderFilter.java32 * The default implementation implements {@link #close()} by closing the wrapped
47 public void close() throws IOException { method in class:IntEncoderFilter
48 // There is no need to call super.close(), since we don't pass the output
50 encoder.close();
H A DChunksIntEncoder.java88 public void close() throws IOException { method in class:ChunksIntEncoder
92 encoder.close();
93 super.close();
H A DIntEncoder.java26 * algorithm. The default implementation of {@link #close()} closes the set
31 * {@link #encode(int)} or {@link #close()}.
38 * only upon calling {@link #close()}. Therefore it is important to always call
39 * {@link #close()} on the encoder at hand.
69 * <code>super.close()</code> or close the output stream themselves.
71 public void close() throws IOException { method in class:IntEncoder
73 out.close();
101 * <b>NOTE:</b> after calling {@link #close()}, one <u><i>must</i></u> call
H A DNOnesIntEncoder.java68 public void close() throws IOException { method in class:NOnesIntEncoder
74 super.close();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DTokenFilter.java47 public void close() throws IOException { method in class:TokenFilter
48 input.close();
H A DTokenStream.java64 * <li>The consumer calls {@link #close()} to release any resource when finished
182 public void close() throws IOException {} method in class:TokenStream
H A DTokenizer.java78 public void close() throws IOException { method in class:Tokenizer
80 input.close();
81 // LUCENE-2387: don't hold onto Reader after close, so
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DMergeScheduler.java36 public abstract void close() method in class:MergeScheduler
H A DNoMergeScheduler.java42 public void close() {} method in class:NoMergeScheduler
H A DSegmentMergeQueue.java37 final void close() throws IOException { method in class:SegmentMergeQueue
39 pop().close();
H A DSerialMergeScheduler.java42 public void close() {} method in class:SerialMergeScheduler
H A DTermEnum.java39 public abstract void close() throws IOException; method in class:TermEnum
H A DReusableStringReader.java58 public void close() {} method in class:ReusableStringReader
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestIOUtils.java35 public void close() throws IOException { method in class:TestIOUtils.BrokenCloseable
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestIOUtils.java35 public void close() throws IOException { method in class:TestIOUtils.BrokenCloseable
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/
H A DTaxonomyWriterCache.java47 * Let go of whatever resources the cache is holding. After a close(),
50 public void close(); method in interface:TaxonomyWriterCache
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTermEnum.java77 public void close() { method in class:InstantiatedTermEnum
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/regex/
H A DRegexTermEnum.java79 public void close() throws IOException { method in class:RegexTermEnum
80 super.close();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DFilteredTermEnum.java99 public void close() throws IOException { method in class:FilteredTermEnum
100 if (actualEnum != null) actualEnum.close();
H A DNRTManagerReopenThread.java75 * When you are done be sure to close both the manager and the reopen thrad:
77 * reopenThread.close();
78 * manager.close();
116 public synchronized void close() { method in class:NRTManagerReopenThread
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DIndexInput.java75 public abstract void close() throws IOException; method in class:IndexInput
H A DIndexOutput.java34 public abstract void close() throws IOException; method in class:IndexOutput
H A DInputStreamDataInput.java55 public void close() throws IOException { method in class:InputStreamDataInput
56 is.close();
H A DOutputStreamDataOutput.java43 public void close() throws IOException { method in class:OutputStreamDataOutput
44 os.close();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DCloseableThreadLocal.java43 * value. When you call {@link #close}, these hard
49 * {@link #close} takes care of all
50 * threads. You should not call {@link #close} until all
131 public void close() { method in class:CloseableThreadLocal

Completed in 154 milliseconds

123456789