Package org.openntf.domino.iterators

Examples of org.openntf.domino.iterators.ItemVectorIterator


    return itemNames_.size();
  }

  @Override
  public Iterator<Item> iterator() {
    return new ItemVectorIterator(doc_, this);
  }
View Full Code Here


    return -1;
  }

  @Override
  public ListIterator<Item> listIterator() {
    return new ItemVectorIterator(doc_, this);
  }
View Full Code Here

    return new ItemVectorIterator(doc_, this);
  }

  @Override
  public ListIterator<Item> listIterator(final int arg0) {
    return new ItemVectorIterator(doc_, this);
  }
View Full Code Here

TOP

Related Classes of org.openntf.domino.iterators.ItemVectorIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.