Package com.gengoai.sql.operator
Class InfixBinaryOperator
- java.lang.Object
-
- com.gengoai.sql.operator.SQLOperator
-
- com.gengoai.sql.operator.InfixBinaryOperator
-
- All Implemented Interfaces:
SQLOperable
,SQLElement
,Serializable
public class InfixBinaryOperator extends SQLOperator
Specialized operator for binary infix operators- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.gengoai.sql.operator.SQLOperator
operator
-
-
Constructor Summary
Constructors Constructor Description InfixBinaryOperator(String operator, @NonNull SQLElement arg1, @NonNull SQLElement arg2)
Instantiates a new SQLBinaryOperator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
-
Methods inherited from class com.gengoai.sql.operator.SQLOperator
getOperator, isRequiresParenthesis
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.gengoai.sql.SQLElement
getClassName
-
-
-
-
Constructor Detail
-
InfixBinaryOperator
public InfixBinaryOperator(String operator, @NonNull @NonNull SQLElement arg1, @NonNull @NonNull SQLElement arg2)
Instantiates a new SQLBinaryOperator.- Parameters:
operator
- the operatorarg1
- the left hand side operatorarg2
- the right hand side operator
-
-