com.fdsapi.arrays
Class ColumnString
java.lang.Object
|
+--com.fdsapi.arrays.ColumnString
- All Implemented Interfaces:
- Column
- public class ColumnString
- extends java.lang.Object
- implements Column
An implementation of the Column interface that displays a string constant as part of the select clause.
It is invoked for 'souza' in the following example. Double quotes may also be used to delimit the String.:
select date(), rownum(), col0, col1, mycolname, "steve", 'souza' from array
View Code
|
Constructor Summary |
ColumnString(java.lang.String stringConst)
Creates a new instance of ColumnString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ColumnString
public ColumnString(java.lang.String stringConst)
- Creates a new instance of ColumnString
createInstance
public Column createInstance()
- Specified by:
createInstance in interface Column
getObject
public java.lang.Object getObject(java.lang.Object[] row)
- Return the objects associated String
- Specified by:
getObject in interface Column