Package civquest.core

Examples of civquest.core.IDIterator


  public Iterator<MapObject> getMapObjectIterator() {
    return mapObjects.iterator();
  }

  public Iterator<Long> getMapObjectIDIterator() {
    return new IDIterator(mapObjects.iterator());
  }
View Full Code Here


    public Iterator<Unit> getUnitIterator() {
        return new IteratorFilter<Unit>(mapObjects.iterator(), Unit.class);
    }

   public Iterator<Long> getUnitIDIterator() {
     return new IDIterator(mapObjects.iterator(), Unit.class);
  
View Full Code Here

TOP

Related Classes of civquest.core.IDIterator

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.