Package lumis.search
Interface IAttributeSetReader
-
- All Known Implementing Classes:
SearchAttributes
,SearchContent
@Deprecated @StableMinor(version="14.2", sinceVersion="4.0") public interface IAttributeSetReader
Deprecated.Since 8.1.0, lumis.search was replaced by lumis.portal.bigdata.Provides a common way to read attribute values, which consist in information exchanged between the portal and the search engines.- Since:
- 4.0.4
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
- See Also:
SearchContent
,SearchResults.getAttributes()
,SearchHit.getAttributes()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description List<String>
getAttributeValues(String attributeName)
Deprecated.Returns all the values related to the attribute named as specified.boolean
hasAttribute(String attributeName)
Deprecated.Checks if the attribute set contains at least one attribute with the specified name.
-
-
-
Method Detail
-
hasAttribute
boolean hasAttribute(String attributeName)
Deprecated.Checks if the attribute set contains at least one attribute with the specified name.- Parameters:
attributeName
- name of the attribute.- Returns:
- true if at least one attribute with the provided name was found.
- Since:
- 4.0.4
-
getAttributeValues
List<String> getAttributeValues(String attributeName)
Deprecated.Returns all the values related to the attribute named as specified.- Parameters:
attributeName
- name of the attribute.- Returns:
- all values related to the specified attribute name, or an empty
List
if there is no value to return. - Since:
- 4.0.4
-
-