com.fatwire.gst.foundation.facade.sql
Interface Row


public interface Row

Represents a row in an IList.

Wrapper over IList so that it can be used by an iterator()

Author:
Dolf.Dijkstra

Method Summary
 byte[] getBytes(String key)
           
 Character getChar(String key)
           
 Date getDate(String key)
           
 Integer getInt(String key)
           
 Long getLong(String key)
           
 String getString(String key)
           
 boolean isField(String key)
           
 

Method Detail

getString

String getString(String key)
Parameters:
key -
Returns:
the key value as a String or null.

getLong

Long getLong(String key)
Parameters:
key -
Returns:
the key value as a Long or null.

getInt

Integer getInt(String key)
Parameters:
key -
Returns:
the key value as a Integer or null.

getBytes

byte[] getBytes(String key)
Parameters:
key -
Returns:
the key value as a Byte array or null.

getChar

Character getChar(String key)
Parameters:
key -
Returns:
the key value as a char or null.

getDate

Date getDate(String key)
Parameters:
key -
Returns:
the key value as a Date or null.

isField

boolean isField(String key)
Parameters:
key -
Returns:
true if key is a field in the Row.


Copyright © 2010-2013 Oracle Corporation. All Rights Reserved.