All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.baulsupp.kolja.log.line.LineIterator Maven / Gradle / Ivy

The newest version!
package com.baulsupp.kolja.log.line;

import java.util.Iterator;

public interface LineIterator extends Iterator {
  void moveTo(int position);

  boolean hasNext();

  // null for the end
  Line next();

  boolean hasPrevious();

  // null for the end
  Line previous();

  void moveToEnd();

  void moveToStart();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy