Class IteratorTransformer<T>

java.lang.Object
org.hibernate.tool.internal.util.IteratorTransformer<T>
All Implemented Interfaces:
Iterator<String>

public abstract class IteratorTransformer<T> extends Object implements Iterator<String>
  • Constructor Details

    • IteratorTransformer

      public IteratorTransformer(Iterator<T> delegate)
  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Iterator<T>
    • next

      public String next()
      Specified by:
      next in interface Iterator<T>
    • transform

      public abstract String transform(T object)
    • remove

      public void remove()
      Specified by:
      remove in interface Iterator<T>