SearchResult

class SearchResult(rows: List<SearchRow>, metadata: SearchMetadata) : FacetResultAccessor

Functions

Link copied to clipboard
open operator override fun get(facet: DateFacet): DateFacetResult?

Returns the DateFacetResult with the same name as facet, or null if none of the search results matched the facet.

open operator override fun get(facet: NumericFacet): NumericFacetResult?

Returns the NumericFacetResult with the same name as facet, or null if none of the search results matched the facet.

open operator override fun get(facet: TermFacet): TermFacetResult?

Returns the TermFacetResult with the same name as facet, or null if none of the search results matched the facet.

Link copied to clipboard
open override fun toString(): String

Properties

Link copied to clipboard
open override val facets: List<FacetResult<*>>
Link copied to clipboard
val metadata: SearchMetadata
Link copied to clipboard
val rows: List<SearchRow>