Searched defs:obj (Results 1 - 25 of 72) sorted by relevance

123

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/util/
H A DStringUtils.java22 public static String toString(Object obj) { argument
24 if (obj != null) {
25 return obj.toString();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DSetOnce.java40 private volatile T obj = null; field in class:SetOnce
59 public SetOnce(T obj) { argument
60 this.obj = obj;
65 public final void set(T obj) { argument
67 this.obj = obj;
75 return obj;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/aggregator/
H A DCountingAggregator.java45 public boolean equals(Object obj) { argument
46 if (obj == null || obj.getClass() != this.getClass()) {
49 CountingAggregator that = (CountingAggregator) obj;
H A DScoringAggregator.java42 public boolean equals(Object obj) { argument
43 if (obj == null || obj.getClass() != this.getClass()) {
46 ScoringAggregator that = (ScoringAggregator) obj;
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/
H A DBoostingQuery.java100 public boolean equals(Object obj) { argument
101 if (this == obj)
103 if (obj == null)
105 if (getClass() != obj.getClass())
107 BoostingQuery other = (BoostingQuery) obj;
H A DTermsFilter.java79 public boolean equals(Object obj) argument
81 if(this == obj)
83 if((obj == null) || (obj.getClass() != this.getClass()))
85 TermsFilter test = (TermsFilter)obj;
H A DBooleanFilter.java131 public boolean equals(Object obj) { argument
132 if (this == obj) {
136 if ((obj == null) || (obj.getClass() != this.getClass())) {
140 final BooleanFilter other = (BooleanFilter)obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DKeywordAttributeImpl.java51 public boolean equals(Object obj) { argument
52 if (this == obj)
54 if (getClass() != obj.getClass())
56 final KeywordAttributeImpl other = (KeywordAttributeImpl) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DFieldValueFilter.java125 public boolean equals(Object obj) { argument
126 if (this == obj)
128 if (obj == null)
130 if (getClass() != obj.getClass())
132 FieldValueFilter other = (FieldValueFilter) obj;
H A DPrefixQuery.java71 public boolean equals(Object obj) { argument
72 if (this == obj)
74 if (!super.equals(obj))
76 if (getClass() != obj.getClass())
78 PrefixQuery other = (PrefixQuery) obj;
H A DWildcardQuery.java94 public boolean equals(Object obj) { argument
95 if (this == obj)
97 if (!super.equals(obj))
99 if (getClass() != obj.getClass())
101 WildcardQuery other = (WildcardQuery) obj;
H A DTopTermsRewrite.java91 public boolean equals(Object obj) { argument
92 if (this == obj) return true;
93 if (obj == null) return false;
94 if (getClass() != obj.getClass()) return false;
95 final TopTermsRewrite other = (TopTermsRewrite) obj;
/lucene-3.6.0/solr/contrib/dataimporthandler/src/test/org/apache/solr/handler/dataimport/
H A DMockInitialContextFactory.java59 public static void bind(String name, Object obj) { argument
60 objects.put(name, obj);
/lucene-3.6.0/lucene/contrib/analyzers/smartcn/src/java/org/apache/lucene/analysis/cn/smart/hhmm/
H A DPathNode.java59 public boolean equals(Object obj) { argument
60 if (this == obj)
62 if (obj == null)
64 if (getClass() != obj.getClass())
66 PathNode other = (PathNode) obj;
H A DSegTokenPair.java71 public boolean equals(Object obj) { argument
72 if (this == obj)
74 if (obj == null)
76 if (getClass() != obj.getClass())
78 SegTokenPair other = (SegTokenPair) obj;
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/aggregator/association/
H A DAssociationFloatSumAggregator.java57 public boolean equals(Object obj) { argument
58 if (obj == null || obj.getClass() != this.getClass()) {
61 AssociationFloatSumAggregator that = (AssociationFloatSumAggregator) obj;
H A DAssociationIntSumAggregator.java57 public boolean equals(Object obj) { argument
58 if (obj == null || obj.getClass() != this.getClass()) {
61 AssociationIntSumAggregator that = (AssociationIntSumAggregator) obj;
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/config/
H A DNumericConfig.java140 public boolean equals(Object obj) { argument
142 if (obj == this) return true;
144 if (obj instanceof NumericConfig) {
145 NumericConfig other = (NumericConfig) obj;
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/
H A DCartesianPoint.java69 public boolean equals(Object obj) { argument
70 if (this == obj)
72 if (obj == null)
74 if (getClass() != obj.getClass())
76 CartesianPoint other = (CartesianPoint) obj;
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/shape/
H A DLineSegment.java97 public boolean equals(Object obj) { argument
98 if (this == obj)
100 if (obj == null)
102 if (getClass() != obj.getClass())
104 LineSegment other = (LineSegment) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DAnalyzer.java103 protected void setPreviousTokenStream(Object obj) { argument
105 tokenStreams.set(obj);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DTerm.java78 public boolean equals(Object obj) { argument
79 if (this == obj)
81 if (obj == null)
83 if (getClass() != obj.getClass())
85 Term other = (Term) obj;
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/payloads/
H A DAveragePayloadFunction.java57 public boolean equals(Object obj) { argument
58 if (this == obj)
60 if (obj == null)
62 if (getClass() != obj.getClass())
H A DMaxPayloadFunction.java60 public boolean equals(Object obj) { argument
61 if (this == obj)
63 if (obj == null)
65 if (getClass() != obj.getClass())
H A DMinPayloadFunction.java58 public boolean equals(Object obj) { argument
59 if (this == obj)
61 if (obj == null)
63 if (getClass() != obj.getClass())

Completed in 25 milliseconds

123