Class StringUtil.StringIterator<T>

  • All Implemented Interfaces:
    java.util.Iterator<java.lang.String>
    Enclosing class:
    StringUtil

    public abstract static class StringUtil.StringIterator<T>
    extends java.lang.Object
    implements java.util.Iterator<java.lang.String>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.Iterator<? extends T> iterator  
    • Constructor Summary

      Constructors 
      Constructor Description
      StringIterator​(java.util.Iterator<? extends T> iterator)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      void remove()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Iterator

        forEachRemaining, next
    • Field Detail

      • iterator

        protected java.util.Iterator<? extends T> iterator
    • Constructor Detail

      • StringIterator

        public StringIterator​(java.util.Iterator<? extends T> iterator)
    • Method Detail

      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<T>
      • remove

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