initial commit

This commit is contained in:
wea_ondara
2022-07-11 21:18:54 +02:00
commit 8bb2265abd
34 changed files with 2488 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package jef.expressions;
import lombok.Getter;
@Getter
public class TableExpression extends ConstantExpression {
private final String name;
public TableExpression(String name) {
super(name);
this.name = name;
}
@Override
public Type getType() {
return Type.TABLE;
}
@Override
public String getValue() {
return (String) super.getValue();
}
@Override
public String toString() {
return "`" + super.toString() + "`";
}
}