@groovy.transform.CompileStatic interface GloopCursor extends java.io.Closeable
| Type | Name and description |
|---|---|
java.lang.Object |
value |
| Type Params | Return Type | Name and description |
|---|---|---|
|
abstract void |
append()tells the cursor to create a new empty record at the end of the records this cursor is processing |
|
abstract void |
close()Tell the cursor to close |
|
abstract java.lang.Object |
getValue()An object that is the current record @return |
|
abstract boolean |
hasNext()
|
|
abstract java.util.Iterator |
iterator() |
|
abstract void |
nextRecord()Tells the cursor to point to the next record |
|
abstract void |
setValue(java.lang.Object value)Set the current record to a given value @return |
|
abstract 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 @return
Tells the cursor to point to the next record
Set the current record to a given value @return