Trait

com.github.takezoe.solr.scala

QueryBuilderBase

Related Doc: package scala

Permalink

trait QueryBuilderBase[Repr <: QueryBuilderBase[Repr]] extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QueryBuilderBase
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createCopy: Repr

    Permalink
    Attributes
    protected

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def collapseBy(field: String, expandCount: Int): Repr

    Permalink
  7. def collection(collection: String): Repr

    Permalink
  8. var collection: String

    Permalink
    Attributes
    protected
  9. def docToMap(doc: SolrDocument): Map[String, AnyRef]

    Permalink
    Attributes
    protected
  10. def enableGroupCount(): Repr

    Permalink
  11. def enableGroupFacet(): Repr

    Permalink
  12. def enableSpatial(): Repr

    Permalink

    Added in response to #63 Missing spatial parameters while building solr query Enable Spatial is true.

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def facetFields(fields: String*): Repr

    Permalink

    Sets facet field names.

    Sets facet field names.

    fields

    field names

  16. def facetQuery(fq: String): Repr

    Permalink
  17. def fields(fields: String*): Repr

    Permalink

    Sets field names to retrieve by this query.

    Sets field names to retrieve by this query.

    fields

    field names

  18. def filteredQuery(fq: String*): Repr

    Permalink
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  21. def groupBy(fields: String*): Repr

    Permalink

    Sets grouping field names.

    Sets grouping field names.

    fields

    field names

  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. def highlight(field: String, size: Int = 100, prefix: String = "", postfix: String = "", snippets: Int = 1): Repr

    Permalink

    Configures to retrieve a highlighted snippet.

    Configures to retrieve a highlighted snippet. Highlighted snippet is set as the "highlight" property of the map or the case class.

    field

    the highlight field

    size

    the highlight fragment size

    prefix

    the prefix of highlighted ranges

    postfix

    the postfix of highlighted ranges

  24. var highlightField: String

    Permalink
    Attributes
    protected
  25. def id(id: String): Repr

    Permalink

    Sets the field name of the unique key.

    Sets the field name of the unique key.

    id

    the field name of the unique key (default is "id").

  26. var id: String

    Permalink
    Attributes
    protected
  27. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  28. def limitGrouping(limit: Int): Repr

    Permalink
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. def recommend(fields: String*): Repr

    Permalink

    Configure to recommendation search.

    Configure to recommendation search. If you call this method, the query returns documents similar to the query result instead of them.

    fields

    field names of recommendation target

  33. var recommendFlag: Boolean

    Permalink
    Attributes
    protected
  34. def responseToMap(response: QueryResponse): MapQueryResult

    Permalink
    Attributes
    protected
  35. def responseToObject[T](response: QueryResponse)(implicit m: Manifest[T]): CaseClassQueryResult[T]

    Permalink
  36. def rows(rows: Int): Repr

    Permalink

    Specifies the maximum number of results to return.

    Specifies the maximum number of results to return.

    rows

    number of results

  37. def setRequestHandler(handler: String): Repr

    Permalink

    Sets the RequestHandler for the Solr query

    Sets the RequestHandler for the Solr query

    handler

    the name of the RequestHandler as defined in solrconfig.xml (default is "/select").

  38. var solrQuery: SolrQuery

    Permalink
    Attributes
    protected
  39. def sortBy(field: String, order: Order): Repr

    Permalink

    Sets the sorting field name and its order.

    Sets the sorting field name and its order.

    field

    the sorting field name

    order

    the sorting order

  40. def spatialPt(lat: Double, lng: Double): Repr

    Permalink

    Added in response to #63 Missing spatial parameters while building solr query * Sets Spatial field called pt.

  41. def spatialSfield(value: String): Repr

    Permalink

    Added in response to #63 Missing spatial parameters while building solr query Sets Spatial field named SField.

    Added in response to #63 Missing spatial parameters while building solr query Sets Spatial field named SField.

    value

    : value for Sfield.

  42. def start(start: Int): Repr

    Permalink

    Sets the offset to start at in the result set.

    Sets the offset to start at in the result set.

    start

    zero-based offset

  43. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  44. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  45. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped