Class IntegerArray


  • public class IntegerArray
    extends java.lang.Object
    A simple collection that stores integers and grows automatically.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(int num)  
      void clear()  
      int get​(int index)  
      int[] getArray()  
      int getSize()  
      boolean isEmpty()
      Returns true if this collection contains no elements.
      void setSize​(int len)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IntegerArray

        public IntegerArray()
      • IntegerArray

        public IntegerArray​(int initialSize)
    • Method Detail

      • add

        public void add​(int num)
      • get

        public final int get​(int index)
      • isEmpty

        public boolean isEmpty()
        Returns true if this collection contains no elements.
        Returns:
        true if this collection contains no elements
        Since:
        jEdit 5.6pre1
      • getSize

        public final int getSize()
      • setSize

        public final void setSize​(int len)
      • clear

        public final void clear()
      • getArray

        public int[] getArray()