| java.lang.Object org.openrdf.query.algebra.QueryModelNodeBase org.openrdf.query.algebra.BinaryValueOperator
All known Subclasses: org.openrdf.query.algebra.Regex, org.openrdf.query.algebra.Or, org.openrdf.query.algebra.Compare, org.openrdf.query.algebra.SameTerm, org.openrdf.query.algebra.LangMatches, org.openrdf.query.algebra.And, org.openrdf.query.algebra.MathExpr,
BinaryValueOperator | abstract public class BinaryValueOperator extends QueryModelNodeBase implements ValueExpr(Code) | | An abstract superclass for binary value operators which, by definition, has
two arguments.
|
BinaryValueOperator | public BinaryValueOperator()(Code) | | |
BinaryValueOperator | public BinaryValueOperator(ValueExpr leftArg, ValueExpr rightArg)(Code) | | Creates a new binary value operator.
Parameters: leftArg - The operator's left argument, must not be null. Parameters: rightArg - The operator's right argument, must not be null. |
getLeftArg | public ValueExpr getLeftArg()(Code) | | Gets the left argument of this binary value operator.
The operator's left argument. |
getRightArg | public ValueExpr getRightArg()(Code) | | Gets the right argument of this binary value operator.
The operator's right argument. |
setLeftArg | public void setLeftArg(ValueExpr leftArg)(Code) | | Sets the left argument of this binary value operator.
Parameters: leftArg - The (new) left argument for this operator, must not benull. |
setRightArg | public void setRightArg(ValueExpr rightArg)(Code) | | Sets the right argument of this binary value operator.
Parameters: rightArg - The (new) right argument for this operator, must not benull. |
|
|