Package com.yahoo.prelude.query
Class BoolItem
java.lang.Object
com.yahoo.prelude.query.Item
com.yahoo.prelude.query.SimpleTaggableItem
com.yahoo.prelude.query.SimpleIndexedItem
com.yahoo.prelude.query.TermItem
com.yahoo.prelude.query.BoolItem
- All Implemented Interfaces:
BlockItem
,HasIndexItem
,IndexedItem
,TaggableItem
,Cloneable
A true/false term suitable for searching bool indexes.
- Author:
- bratseth
-
Nested Class Summary
Nested classes/interfaces inherited from class com.yahoo.prelude.query.Item
Item.ItemCreator, Item.ItemType
-
Field Summary
Fields inherited from class com.yahoo.prelude.query.Item
connectedBacklink, connectedItem, connectivity, DEFAULT_WEIGHT, documentFrequency, explicitSignificance, significance, uniqueID
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
appendHeadingString
(StringBuilder buffer) Word items uses a empty heading instead of "WORD "protected void
encodeThis
(ByteBuffer buffer) boolean
Returns whether this item is of the same class and contains the same state as the given item.Return the searchable term contents of this item.Returns ItemType.WORD as we do not want a string binding from the parsed query to index typesgetName()
Returns the name of this itemint
Returns how many phrase words does this item containReturns the same as stringValueint
hashCode()
boolean
boolean
isWords()
Returns true if this consists of regular word characters.void
setValue
(boolean value) void
Sets the value from a stringReturns "true" or "false"boolean
value()
Methods inherited from class com.yahoo.prelude.query.TermItem
appendBodyString, disclose, encode, getOrigin, getSegmentingRule, getTermCount, isFromQuery, isNormalizable, setFromQuery, setNormalizable, setOrigin, setSegmentingRule
Methods inherited from class com.yahoo.prelude.query.SimpleIndexedItem
appendIndexString, getIndexName, setIndexName
Methods inherited from class com.yahoo.prelude.query.SimpleTaggableItem
getConnectedItem, getConnectivity, getDocumentFrequency, getSignificance, getUniqueID, hasExplicitSignificance, hasUniqueID, setConnectivity, setDocumentFrequency, setExplicitSignificance, setSignificance, setUniqueID
Methods inherited from class com.yahoo.prelude.query.Item
addAnnotation, clone, getAnnotation, getBytes, getCode, getCreator, getLabel, getLanguage, getParent, getWeight, hasAnnotation, hasConnectivityBackLink, hasPrefixMatchSemantics, isFilter, isFromSpecialToken, isProtected, isRanked, isRoot, putBytes, putString, setCreator, setFilter, setFromSpecialToken, setHasUniqueID, setLabel, setLanguage, setParent, setPositionData, setProtected, setRanked, setWeight, shouldParenthesize, toString, usePositionData
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.yahoo.prelude.query.HasIndexItem
getIndexName
-
Constructor Details
-
BoolItem
public BoolItem(boolean value) -
BoolItem
-
BoolItem
-
-
Method Details
-
getItemType
Returns ItemType.WORD as we do not want a string binding from the parsed query to index types- Specified by:
getItemType
in classItem
-
getName
Description copied from class:Item
Returns the name of this item -
encodeThis
- Overrides:
encodeThis
in classSimpleIndexedItem
-
value
public boolean value() -
stringValue
Returns "true" or "false" -
setValue
public void setValue(boolean value) -
setValue
Sets the value from a string- Specified by:
setValue
in classTermItem
- Parameters:
stringValue
- "true" or "false"- Throws:
IllegalArgumentException
- if the given value is not equal to "true" nor "false" (ignoring case)
-
getRawWord
Returns the same as stringValue- Specified by:
getRawWord
in interfaceBlockItem
- Specified by:
getRawWord
in classTermItem
-
isStemmed
public boolean isStemmed() -
appendHeadingString
Word items uses a empty heading instead of "WORD "- Overrides:
appendHeadingString
in classItem
-
hashCode
public int hashCode() -
equals
Description copied from class:Item
Returns whether this item is of the same class and contains the same state as the given item. -
getNumWords
public int getNumWords()Description copied from interface:HasIndexItem
Returns how many phrase words does this item contain -
getIndexedString
Description copied from interface:IndexedItem
Return the searchable term contents of this item.- Specified by:
getIndexedString
in interfaceIndexedItem
- Specified by:
getIndexedString
in classSimpleIndexedItem
- Returns:
- a string representation of what is presumably stored in an index which will match this item
-
isWords
public boolean isWords()Returns true if this consists of regular word characters. Returns false if this represents a "special token"
-