📄 bigdecimalvalue.java
字号:
package com.ora.jsp.sql.value;
import java.math.*;
import com.ora.jsp.sql.Value;
/**
* This class represents a BigDecimal value used by the SQL tags.
*
* @author Hans Bergsten, Gefion software <hans@gefionsoftware.com>
* @version 1.0
*/
public class BigDecimalValue extends Value {
private BigDecimal value;
public BigDecimalValue(BigDecimal value) {
this.value = value;
}
public BigDecimal getBigDecimal() {
return value;
}
public String getString() {
return value.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -