130 lines
2.6 KiB
Java
130 lines
2.6 KiB
Java
/**
|
|
* Copyright (c) 2011-2019, James Zhan 詹波 (jfinal@126.com).
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.jfinal.template.expr.ast;
|
|
|
|
import com.jfinal.template.expr.Sym;
|
|
import com.jfinal.template.stat.Scope;
|
|
|
|
/**
|
|
* STR INT LONG FLOAT DOUBLE TRUE FALSE NULL
|
|
*/
|
|
public class Const extends Expr {
|
|
|
|
public static final Const TRUE = new Const(Sym.TRUE, Boolean.TRUE);
|
|
public static final Const FALSE = new Const(Sym.FALSE, Boolean.FALSE);
|
|
public static final Const NULL = new Const(Sym.NULL, null);
|
|
|
|
private final Sym type;
|
|
private final Object value;
|
|
|
|
/**
|
|
* INT LONG FLOAT DOUBLE 常量已在 NumTok 中转换成了确切的类型,无需再次转换
|
|
*/
|
|
public Const(Sym type, Object value) {
|
|
this.type = type;
|
|
this.value = value;
|
|
}
|
|
|
|
public Object eval(Scope scope) {
|
|
return value;
|
|
}
|
|
|
|
public boolean isStr() {
|
|
return type == Sym.STR;
|
|
}
|
|
|
|
public boolean isTrue() {
|
|
return type == Sym.TRUE;
|
|
}
|
|
|
|
public boolean isFalse() {
|
|
return type == Sym.FALSE;
|
|
}
|
|
|
|
public boolean isBoolean() {
|
|
return type == Sym.TRUE || type == Sym.FALSE;
|
|
}
|
|
|
|
public boolean isNull() {
|
|
return type == Sym.NULL;
|
|
}
|
|
|
|
public boolean isInt() {
|
|
return type == Sym.INT;
|
|
}
|
|
|
|
public boolean isLong() {
|
|
return type == Sym.LONG;
|
|
}
|
|
|
|
public boolean isFloat() {
|
|
return type == Sym.FLOAT;
|
|
}
|
|
|
|
public boolean isDouble() {
|
|
return type == Sym.DOUBLE;
|
|
}
|
|
|
|
public boolean isNumber() {
|
|
return value instanceof Number;
|
|
}
|
|
|
|
public Object getValue() {
|
|
return value;
|
|
}
|
|
|
|
public String getStr() {
|
|
return (String)value;
|
|
}
|
|
|
|
public Boolean getBoolean() {
|
|
return (Boolean)value;
|
|
}
|
|
|
|
public Integer getInt() {
|
|
return (Integer)value;
|
|
}
|
|
|
|
public Long getLong() {
|
|
return (Long)value;
|
|
}
|
|
|
|
public Float getFloat() {
|
|
return (Float)value;
|
|
}
|
|
|
|
public Double getDouble() {
|
|
return (Double)value;
|
|
}
|
|
|
|
public Number getNumber() {
|
|
return (Number)value;
|
|
}
|
|
|
|
public String toString() {
|
|
return value != null ? value.toString() : "null";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|