com.ora.jsp.sql.column
Class BytesColumn

java.lang.Object
  |
  +--com.ora.jsp.sql.Column
        |
        +--com.ora.jsp.sql.column.BytesColumn

public class BytesColumn
extends Column

This class represents a byte[] column.

Version:
1.0
Author:
Hans Bergsten, Gefion software

Field Summary
private  byte[] value
           
 
Fields inherited from class com.ora.jsp.sql.Column
name
 
Constructor Summary
BytesColumn(java.lang.String name, byte[] value)
           
 
Method Summary
 byte[] getBytes()
           
 java.lang.String getString()
          This method must be implemented by all subclasses.
 
Methods inherited from class com.ora.jsp.sql.Column
getBigDecimal, getBoolean, getByte, getDate, getDouble, getFloat, getInt, getLong, getName, getObject, getShort, getTime, getTimestamp, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

value

private byte[] value
Constructor Detail

BytesColumn

public BytesColumn(java.lang.String name,
                   byte[] value)
Method Detail

getBytes

public byte[] getBytes()
Overrides:
getBytes in class Column

getString

public java.lang.String getString()
Description copied from class: Column
This method must be implemented by all subclasses. All data types can be converted to a String.
Overrides:
getString in class Column