public interface GloopCursor extends java.io.Closeable
Type Params | Return Type | Name and description |
---|---|---|
|
public void |
append() tells the cursor to create a new empty record at the end of the records this cursor is processing |
|
public void |
close() Tell the cursor to close |
|
public java.lang.Object |
getValue() An object that is the current record @return |
|
public boolean |
hasNext()
|
|
public boolean |
isIterable() |
|
public java.util.Iterator |
iterator() |
|
public void |
nextRecord() Tells the cursor to point to the next record |
|
public void |
setValue(java.lang.Object value) Set the current record to a given value @return |
|
public long |
size()
|
Methods inherited from class | Name |
---|---|
interface java.io.Closeable |
java.io.Closeable#close() |
tells the cursor to create a new empty record at the end of the records this cursor is processing
Tell the cursor to close
An object that is the current record
Tells the cursor to point to the next record
Set the current record to a given value