com.ora.jsp.sql.column
Class TimeColumn

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

public class TimeColumn
extends Column

This class represents a Time column.

Version:
1.0
Author:
Hans Bergsten, Gefion software

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

Field Detail

value

private java.sql.Time value
Constructor Detail

TimeColumn

public TimeColumn(java.lang.String name,
                  java.sql.Time value)
Method Detail

getTime

public java.sql.Time getTime()
Overrides:
getTime 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