Package httl.util.iterators

Examples of httl.util.iterators.ShortArrayIterator


  public static Iterator<Byte> toIterator(byte[] object) {
    return new ByteArrayIterator(object);
  }

  public static Iterator<Short> toIterator(short[] object) {
    return new ShortArrayIterator(object);
  }
View Full Code Here


    } 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[]) {
      return new ShortArrayIterator((short[]) object);
    } else if (object instanceof byte[]) {
      return new ByteArrayIterator((byte[]) object);
    } else if (object instanceof char[]) {
      return new CharArrayIterator((char[]) object);
    } else if (object instanceof boolean[]) {
View Full Code Here

TOP

Related Classes of httl.util.iterators.ShortArrayIterator

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.