Package com.yahoo.prelude.query
Class EquivItem
java.lang.Object
com.yahoo.prelude.query.Item
com.yahoo.prelude.query.CompositeItem
com.yahoo.prelude.query.CompositeTaggableItem
com.yahoo.prelude.query.EquivItem
- All Implemented Interfaces:
TaggableItem
,Cloneable
An Item where each child is an alternative which can be matched.
Produces the same recall as Or, but differs in that the relevance of a match
does not increase if more than one children is matched: With Equiv, matching one child perfectly is a perfect match.
This can only have Word, WordAlternatives, Exact, Int or Phrase children.
- Author:
- havardpe
-
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 TypeMethodDescriptionstatic boolean
acceptsChildrenOfType
(Item.ItemType itemType) Returns true if this accepts child items of the given typeboolean
acceptsItemsOfType
(Item.ItemType itemType) protected void
Return the enumerated type of this item.getName()
Returns the name of this itemMethods inherited from class com.yahoo.prelude.query.CompositeTaggableItem
getConnectedItem, getConnectivity, getDocumentFrequency, getSignificance, getUniqueID, hasExplicitSignificance, hasUniqueID, setConnectivity, setDocumentFrequency, setExplicitSignificance, setSignificance, setUniqueID
Methods inherited from class com.yahoo.prelude.query.CompositeItem
addItem, addItem, appendBodyString, clone, disclose, encode, encodeThis, encodingArity, ensureNotInSubtree, equals, extractSingleChild, getItem, getItemCount, getItemIndex, getItemIterator, getTermCount, hashCode, isLocked, items, lock, removeItem, removeItem, setIndexName, setItem, shouldParenthesize
Methods inherited from class com.yahoo.prelude.query.Item
addAnnotation, appendHeadingString, 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, toString, usePositionData
-
Constructor Details
-
EquivItem
public EquivItem()Makes an EQUIV item with no children -
EquivItem
Creates an EQUIV with the given item as child. The new EQUIV will take connectivity, significance and weight from the given item.- Parameters:
item
- will be modified and added as a child
-
EquivItem
Creates an EQUIV with the given item and a set of alternate words as children. The new EQUIV will take connectivity, significance and weight from the given item.- Parameters:
item
- will be modified and added as a childwords
- set of words to create WordItems from
-
-
Method Details
-
getItemType
Description copied from class:Item
Return the enumerated type of this item.- Specified by:
getItemType
in classItem
-
getName
Description copied from class:Item
Returns the name of this item -
adding
- Overrides:
adding
in classCompositeItem
-
acceptsItemsOfType
- Overrides:
acceptsItemsOfType
in classCompositeItem
-
acceptsChildrenOfType
Returns true if this accepts child items of the given type
-