@date 2022/7/7 19:09 @desc IN
| 7 | * @desc IN |
| 8 | */ |
| 9 | public class InExpression extends Expression { |
| 10 | private boolean not; |
| 11 | |
| 12 | public InExpression(String expression, boolean not) { |
| 13 | super(expression, OperatorTypeEnum.IN); |
| 14 | this.not = not; |
| 15 | } |
| 16 | |
| 17 | public boolean isNot() { |
| 18 | return not; |
| 19 | } |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected