ShortColumnpublic class ShortColumn extends com.ora.jsp.sql.Column This class represents a short column. |
Fields Summary |
---|
private short | value |
Constructors Summary |
---|
public ShortColumn(String name, short value)
super(name);
this.value = value;
|
Methods Summary |
---|
public short | getShort()
return value;
| public java.lang.String | getString()
return String.valueOf(value);
|
|