MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / InExpression

Class InExpression

src/main/java/com/sql/parse/model/InExpression.java:9–20  ·  view source on GitHub ↗

@date 2022/7/7 19:09 @desc IN

Source from the content-addressed store, hash-verified

7 * @desc IN
8 */
9public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected