public static class SolrQueryParserBase.RawQuery extends Query
Constructor and Description |
---|
RawQuery(SchemaField sfield,
String externalVal) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Override and implement query instance equivalence properly in a subclass.
|
int |
hashCode()
Override and implement query hash code properly in a subclass.
|
String |
toString(String field)
Prints a query to a string, with
field assumed to be the
default field and omitted. |
classHash, createWeight, rewrite, sameClassAs, toString
public RawQuery(SchemaField sfield, String externalVal)
public String toString(String field)
Query
field
assumed to be the
default field and omitted.public boolean equals(Object obj)
Query
QueryCache
works properly.
Typically a query will be equal to another only if it's an instance of
the same class and its document-filtering properties are identical that other
instance. Utility methods are provided for certain repetitive code.equals
in class Query
Query.sameClassAs(Object)
,
Query.classHash()
public int hashCode()
Query
QueryCache
works properly.hashCode
in class Query
Query.equals(Object)