Package com.gengoai.sql.operator
Class PostfixUnaryOperator
- java.lang.Object
-
- com.gengoai.sql.operator.SQLOperator
-
- com.gengoai.sql.operator.PostfixUnaryOperator
-
- All Implemented Interfaces:
SQLOperable
,SQLElement
,Serializable
public class PostfixUnaryOperator extends SQLOperator
Unary PostfixSQLOperator
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.gengoai.sql.operator.SQLOperator
operator
-
-
Constructor Summary
Constructors Constructor Description PostfixUnaryOperator(String operator, @NonNull SQLElement arg1, boolean requiresParenthesis)
Instantiates a new SQLPostfixUnaryOperator.
-
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
-
PostfixUnaryOperator
public PostfixUnaryOperator(String operator, @NonNull @NonNull SQLElement arg1, boolean requiresParenthesis)
Instantiates a new SQLPostfixUnaryOperator.- Parameters:
operator
- the operatorarg1
- the argumentrequiresParenthesis
- are parenthesis required
-
-