Package com.yahoo.prelude.query
Interface IndexedItem
-
- All Superinterfaces:
HasIndexItem
- All Known Implementing Classes:
BoolItem
,CompositeIndexedItem
,ExactStringItem
,GeoLocationItem
,IndexedSegmentItem
,IntItem
,MarkerWordItem
,PhraseItem
,PhraseSegmentItem
,PrefixItem
,RangeItem
,RegExpItem
,SimpleIndexedItem
,SubstringItem
,SuffixItem
,TermItem
,UriItem
,WordAlternativesItem
,WordItem
public interface IndexedItem extends HasIndexItem
Interface for Items that are indexed- Author:
- Lars Christian Jensen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIndexedString()
Return the searchable term contents of this item.void
setIndexName(java.lang.String index)
Sets the name of the index to search-
Methods inherited from interface com.yahoo.prelude.query.HasIndexItem
getIndexName, getNumWords
-
-
-
-
Method Detail
-
setIndexName
void setIndexName(java.lang.String index)
Sets the name of the index to search
-
getIndexedString
java.lang.String getIndexedString()
Return the searchable term contents of this item.- Returns:
- a string representation of what is presumably stored in an index which will match this item
-
-