Class StreamUtils

java.lang.Object
org.apache.tools.ant.util.StreamUtils

public class StreamUtils extends Object
  • Constructor Details

    • StreamUtils

      public StreamUtils()
  • Method Details

    • enumerationAsStream

      public static <T> Stream<T> enumerationAsStream(Enumeration<T> e)
      Turn Enumeration into a Stream
      Type Parameters:
      T - Enumeration type
      Parameters:
      e - Enumeration
      Returns:
      Stream
    • iteratorAsStream

      public static <T> Stream<T> iteratorAsStream(Iterator<T> i)
      Turn Iterator into a Stream
      Type Parameters:
      T - Iterator type
      Parameters:
      i - Iterator
      Returns:
      Stream