org.jboss.ejb.plugins.cmp.jdbc.bridge
Interface JDBCEntityBridge.FieldIterator

Enclosing interface:
JDBCEntityBridge (src)

public static interface JDBCEntityBridge.FieldIterator


Method Summary
 boolean hasNext()
           
 JDBCCMPFieldBridge (src) next()
           
 void remove()
          Removes the current field from the iterator (not from the underlying array or another source)
 void removeAll()
          Removes all the fields from the iterator (not from the underlying array or another source).
 void reset()
          Resets the current position to the first field.
 

Method Detail

hasNext

public boolean hasNext()
Returns:
true if there are more fields to iterate through.

next

public JDBCCMPFieldBridge (src)  next()
Returns:
the next field.

remove

public void remove()
Removes the current field from the iterator (not from the underlying array or another source)


removeAll

public void removeAll()
Removes all the fields from the iterator (not from the underlying array or another source).


reset

public void reset()
Resets the current position to the first field.