Package lumis.search
Class SearchResults
- java.lang.Object
-
- lumis.search.SearchResults
-
@Deprecated @StableMinor(version="14.2", sinceVersion="4.0") public abstract class SearchResults extends Object
Deprecated.Since 8.1.0, lumis.search was replaced by lumis.portal.bigdata.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Constructor Summary
Constructors Constructor Description SearchResults()
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description abstract SearchAttributes
getAttributes()
Deprecated.Returns the result'sattributes
.abstract SearchHit
getHit(int hitIndex)
Deprecated.Returns ahit
of the collection.abstract int
getHitCount()
Deprecated.Returns the number ofhits
in the collection.
-
-
-
Method Detail
-
getHitCount
public abstract int getHitCount()
Deprecated.Returns the number ofhits
in the collection.- Returns:
- the number of
hits
in the collection. - Since:
- 4.0.4
-
getHit
public abstract SearchHit getHit(int hitIndex) throws IndexOutOfBoundsException, PortalException
Deprecated.Returns ahit
of the collection.- Parameters:
hitIndex
- index of thehit
to be returned- Returns:
- the
hit
referent to the given index - Throws:
IndexOutOfBoundsException
- if the given index is greater than thehit count
PortalException
- Since:
- 4.0.4
-
getAttributes
public abstract SearchAttributes getAttributes()
Deprecated.Returns the result'sattributes
.Attributes contain additional information returned by the search engine in a
query
execution
.- Returns:
- the result's
attributes
. - Since:
- 4.0.4
-
-