Searched defs:compareTo (Results 1 - 25 of 39) sorted by relevance

12

/lucene-3.6.0/lucene/contrib/analyzers/smartcn/src/java/org/apache/lucene/analysis/cn/smart/hhmm/
H A DPathNode.java32 public int compareTo(PathNode pn) { method in class:PathNode
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/quality/
H A DQualityQuery.java74 public int compareTo(QualityQuery other) { method in class:QualityQuery
82 return queryID.compareTo(other.queryID);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/spelling/
H A DRankedSpellPossibility.java26 public int compareTo(RankedSpellPossibility rcl) { method in class:RankedSpellPossibility
27 return new Integer(rcl.rank).compareTo(rank);
H A DSpellCheckCollation.java28 public int compareTo(SpellCheckCollation scc) { method in class:SpellCheckCollation
29 int c = new Integer(internalRank).compareTo(scc.internalRank);
31 return collationQuery.compareTo(scc.collationQuery);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DIndexCommit.java126 public int compareTo(IndexCommit commit) { method in class:IndexCommit
H A DNormsWriterPerField.java60 public int compareTo(NormsWriterPerField other) { method in class:NormsWriterPerField
61 return fieldInfo.name.compareTo(other.fieldInfo.name);
H A DTerm.java113 public final int compareTo(Term other) { method in class:Term
115 return text.compareTo(other.text);
117 return field.compareTo(other.field);
H A DTermBuffer.java34 public final int compareTo(TermBuffer other) { method in class:TermBuffer
38 return field.compareTo(other.field);
H A DTermInfosReaderIndex.java156 int delta = compareTo(term, termBytesRef, mid, input, scratch);
205 int compareTo(Term term, BytesRef termBytesRef, int termIndex) throws IOException { method in class:TermInfosReaderIndex
206 return compareTo(term, termBytesRef, termIndex, (PagedBytesDataInput) dataInput.clone(), new BytesRef());
222 private int compareTo(Term term, BytesRef termBytesRef, int termIndex, PagedBytesDataInput input, BytesRef reuse) throws IOException { method in class:TermInfosReaderIndex
249 return term.field.compareTo(fields[input.readVInt()].field);
H A DFreqProxTermsWriterPerField.java65 public int compareTo(FreqProxTermsWriterPerField other) { method in class:FreqProxTermsWriterPerField
66 return fieldInfo.name.compareTo(other.fieldInfo.name);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DTopTermsRewrite.java104 public int compareTo(ScoreTerm other) { method in class:TopTermsRewrite.ScoreTerm
106 return other.term.compareTo(this.term);
H A DSearcherLifetimeManager.java121 public int compareTo(SearcherTracker other) { method in class:SearcherLifetimeManager.SearcherTracker
142 // Tracker hash by its version and have compareTo(Long)
/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/vectorhighlight/
H A DFieldTermStack.java170 public int compareTo( TermInfo o ) { method in class:FieldTermStack.TermInfo
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DIntsRef.java90 public int compareTo(IntsRef other) { method in class:IntsRef
H A DBytesRef.java254 public int compareTo(BytesRef other) { method in class:BytesRef
H A DCharsRef.java115 public int compareTo(CharsRef other) { method in class:CharsRef
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestArrayUtil.java201 public int compareTo(Item other) { method in class:TestArrayUtil.Item
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestArrayUtil.java201 public int compareTo(Item other) { method in class:TestArrayUtil.Item
/lucene-3.6.0/solr/core/src/java/org/apache/solr/servlet/
H A DLogLevelSelection.java257 public int compareTo(Object other) { method in class:LogLevelSelection.LogWrapper
262 return name.compareTo(((LogWrapper) other).name);
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/surround/query/
H A DSimpleTerm.java42 public int compareTo(SimpleTerm ost) { method in class:SimpleTerm
44 return this.toStringUnquoted().compareTo( ost.toStringUnquoted());
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/
H A DLookup.java54 public int compareTo(LookupResult o) { method in class:Lookup.LookupResult
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/fst/
H A DFSTCompletion.java58 /** @see BytesRef#compareTo(BytesRef) */
59 public int compareTo(Completion o) { method in class:FSTCompletion.Completion
60 return this.utf8.compareTo(o.utf8);
/lucene-3.6.0/solr/contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/
H A DAbstractDIHCacheTestCase.java85 public int compareTo(ControlData cd) { method in class:AbstractDIHCacheTestCase.ControlData
88 return c1.compareTo(c2);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DSnapShooter.java161 public int compareTo(OldBackupDirectory that) { method in class:SnapShooter.OldBackupDirectory
162 return that.timestamp.compareTo(this.timestamp);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/
H A DCategoryPath.java1028 public int compareTo(CategoryPath other) { method in class:CategoryPath

Completed in 52 milliseconds

12