Interface ODataBatchLineIterator

All Superinterfaces:
Iterator<String>

public interface ODataBatchLineIterator extends Iterator<String>
Batch line iterator class.
  • Method Details

    • hasNext

      boolean hasNext()
      Checks if batch has next line.
      Specified by:
      hasNext in interface Iterator<String>
      Returns:
      'TRUE' if has next line; 'FALSE' otherwise.
    • next

      String next()
      Gets next line.
      Specified by:
      next in interface Iterator<String>
      Returns:
      next line.
    • nextLine

      String nextLine()
      Gets next line.
      Returns:
      next line.
    • getCurrent

      String getCurrent()
      Gets last cached line (the current one).
      Returns:
      last cached line; null if next() method never called