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

Class Arg

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

@date 2022/7/5 17:04 @desc 参数

Source from the content-addressed store, hash-verified

7 * @desc 参数
8 */
9public class Arg {
10 private String expression;
11
12 private ValueTypeEnum type;
13
14 private boolean disable = false;
15
16 public Arg(String expression, ValueTypeEnum type) {
17 this.expression = expression;
18 this.type = type;
19 }
20
21 public String getExpression() {
22 return expression;
23 }
24
25 public void setExpression(String expression) {
26 this.expression = expression;
27 }
28
29 public ValueTypeEnum getType() {
30 return type;
31 }
32
33 public boolean isDisable() {
34 return disable;
35 }
36
37 public void setDisable(boolean disable) {
38 this.disable = disable;
39 }
40}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected