Package httl.util.iterators

Examples of httl.util.iterators.LongArrayIterator


  public static Iterator<Integer> toIterator(int[] object) {
    return new IntArrayIterator(object);
  }

  public static Iterator<Long> toIterator(long[] object) {
    return new LongArrayIterator(object);
  }
View Full Code Here


    } else if (object instanceof Object[]) {
      return new ObjectArrayIterator<Object>((Object[]) object);
    } else if (object instanceof int[]) {
      return new IntArrayIterator((int[]) object);
    } else if (object instanceof long[]) {
      return new LongArrayIterator((long[]) object);
    } else if (object instanceof float[]) {
      return new FloatArrayIterator((float[]) object);
    } else if (object instanceof double[]) {
      return new DoubleArrayIterator((double[]) object);
    } else if (object instanceof short[]) {
View Full Code Here

TOP

Related Classes of httl.util.iterators.LongArrayIterator

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.