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

org.snapscript.common.EmptyIterator Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.common;

import java.util.Iterator;

public class EmptyIterator implements Iterator {

   @Override
   public boolean hasNext() {
      return false;
   }

   @Override
   public T next() {
      return null;
   }

   @Override
   public void remove() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy