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

com.nitorcreations.willow.utils.ObjectIteratorEnumertion Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.nitorcreations.willow.utils;

import java.util.Enumeration;
import java.util.Iterator;

public class ObjectIteratorEnumertion implements Enumeration {
  private final Iterator it;

  public ObjectIteratorEnumertion(Iterator it) {
    this.it = it;
  }

  @Override
  public boolean hasMoreElements() {
    return it.hasNext();
  }

  @Override
  public Object nextElement() {
    return it.next();
  }
}