Package com.yahoo.searchlib.expression
Class AttributeNode
java.lang.Object
com.yahoo.vespa.objects.Selectable
com.yahoo.vespa.objects.Identifiable
com.yahoo.searchlib.expression.ExpressionNode
com.yahoo.searchlib.expression.FunctionNode
com.yahoo.searchlib.expression.AttributeNode
- All Implemented Interfaces:
Serializable,Cloneable
- Direct Known Subclasses:
AttributeMapLookupNode
This function is an instruction to retrieve the value of a named attribute.
- Author:
- baldersheim, Simon Thoresen Hult
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an empty result node.AttributeNode(String attribute) Constructs an instance of this class with given attribute name. -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanReturns the name of the attribute whose value this function is to retrieve.inthashCode()protected voidonDeserialize(com.yahoo.vespa.objects.Deserializer buf) protected intprotected voidonSerialize(com.yahoo.vespa.objects.Serializer buf) setAttributeName(String attribute) Sets the name of the attribute whose value this function is to retrieve.voidvisitMembers(com.yahoo.vespa.objects.ObjectVisitor visitor) Methods inherited from class com.yahoo.searchlib.expression.FunctionNode
clone, equalsExpression, getResult, setResultMethods inherited from class com.yahoo.searchlib.expression.ExpressionNode
equals, execute, executeIterative, onArgument, onExecute, onPrepare, prepareMethods inherited from class com.yahoo.vespa.objects.Identifiable
create, createFromId, deserialize, deserializeOptional, deserializeWithId, equals, getClassId, getRawUtf8Bytes, getUtf8, putUtf8, registerClass, serialize, serializeOptional, serializeWithId, toStringMethods inherited from class com.yahoo.vespa.objects.Selectable
select, select, selectMembers
-
Field Details
-
classId
public static final int classId
-
-
Constructor Details
-
AttributeNode
public AttributeNode()Constructs an empty result node. NOTE: This instance is broken until non-optional member data is set. -
AttributeNode
Constructs an instance of this class with given attribute name.- Parameters:
attribute- The attribute to retrieve.
-
-
Method Details
-
getAttributeName
Returns the name of the attribute whose value this function is to retrieve.- Returns:
- The attribute name.
-
setAttributeName
Sets the name of the attribute whose value this function is to retrieve.- Parameters:
attribute- The attribute to retrieve.- Returns:
- This, to allow chaining.
-
onGetClassId
protected int onGetClassId()- Overrides:
onGetClassIdin classFunctionNode
-
onSerialize
protected void onSerialize(com.yahoo.vespa.objects.Serializer buf) - Overrides:
onSerializein classFunctionNode
-
onDeserialize
protected void onDeserialize(com.yahoo.vespa.objects.Deserializer buf) - Overrides:
onDeserializein classFunctionNode
-
hashCode
public int hashCode()- Overrides:
hashCodein classcom.yahoo.vespa.objects.Identifiable
-
equalsFunction
- Specified by:
equalsFunctionin classFunctionNode
-
visitMembers
public void visitMembers(com.yahoo.vespa.objects.ObjectVisitor visitor) - Overrides:
visitMembersin classFunctionNode
-