📄 datanumber.java
字号:
package org.trinet.jdbc.datatypes;
public interface DataNumber {
/** Returns an int primitive equivalent to the object's value attribute.*/
public abstract int intValue() ;
/** Returns a long primitive equivalent to the object's value attribute.*/
public abstract long longValue() ;
/** Returns a float primitive equivalent to the object's value attribute.*/
public abstract float floatValue() ;
/** Returns a double primitive equivalent to the object's value attribute.*/
public abstract double doubleValue() ;
/** Sets the object's value to the int input argument.
*/
public abstract void setValue(int value) ;
/** Sets the object's value to the value of the long input argument.
*/
public abstract void setValue(long value) ;
/** Sets the object's value to the value of the float input argument.
*/
public abstract void setValue(float value) ;
/** Sets the object's value to the value of the double input argument.
*/
public abstract void setValue(double value) ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -