Package arc.struct

Class ShortSeq

java.lang.Object
arc.struct.ShortSeq

public class ShortSeq extends Object
A resizable, ordered or unordered short array. Avoids the boxing that occurs with ArrayList. If unordered, this class avoids a memory copy when removing elements (the last element is moved to the removed element's position).
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    short[]
     
    boolean
     
    int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates an ordered array with a capacity of 16.
    ShortSeq(boolean ordered, int capacity)
     
    ShortSeq(boolean ordered, short[] array, int startIndex, int count)
    Creates a new array containing the elements in the specified array.
    ShortSeq(int capacity)
    Creates an ordered array with the specified capacity.
    ShortSeq(short[] array)
    Creates a new ordered array containing the elements in the specified array.
    Creates a new array containing the elements in the specific array.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(int value)
    Casts the specified value to short and adds it.
    void
    add(short value)
     
    void
    add(short value1, short value2)
     
    void
    add(short value1, short value2, short value3)
     
    void
    add(short value1, short value2, short value3, short value4)
     
    void
    addAll(short... array)
     
    void
    addAll(short[] array, int offset, int length)
     
    void
     
    void
    addAll(ShortSeq array, int offset, int length)
     
    void
     
    boolean
    contains(short value)
     
    short[]
    ensureCapacity(int additionalCapacity)
    Increases the size of the backing array to accommodate the specified number of additional items.
    boolean
    equals(Object object)
     
    short
    Returns the first item.
    short
    get(int index)
     
    int
     
    void
    incr(int index, short value)
     
    int
    indexOf(short value)
     
    void
    insert(int index, short value)
     
    boolean
    Returns true if the array is empty.
    int
    lastIndexOf(char value)
     
    void
    mul(int index, short value)
     
    short
    Returns the last item.
    short
    pop()
    Removes and returns the last item.
    short
    Returns a random item from the array, or zero if the array is empty.
    boolean
    Removes from this array all of elements contained in the specified array.
    short
    removeIndex(int index)
    Removes and returns the item at the specified index.
    void
    removeRange(int start, int end)
    Removes the items between the specified indices, inclusive.
    boolean
    removeValue(short value)
     
    protected short[]
    resize(int newSize)
     
    void
     
    void
    set(int index, short value)
     
    short[]
    setSize(int newSize)
    Sets the array size, leaving any values beyond the current size undefined.
    short[]
    Reduces the size of the backing array to the size of the actual items.
    void
     
    void
     
    void
    swap(int first, int second)
     
    short[]
     
     
    toString(String separator)
     
    void
    truncate(int newSize)
    Reduces the size of the array to the specified size.
    static ShortSeq
    with(short... array)
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • items

      public short[] items
    • size

      public int size
    • ordered

      public boolean ordered
  • Constructor Details

    • ShortSeq

      public ShortSeq()
      Creates an ordered array with a capacity of 16.
    • ShortSeq

      public ShortSeq(int capacity)
      Creates an ordered array with the specified capacity.
    • ShortSeq

      public ShortSeq(boolean ordered, int capacity)
      Parameters:
      ordered - If false, methods that remove elements may change the order of other elements in the array, which avoids a memory copy.
      capacity - Any elements added beyond this will cause the backing array to be grown.
    • ShortSeq

      public ShortSeq(ShortSeq array)
      Creates a new array containing the elements in the specific array. The new array will be ordered if the specific array is ordered. The capacity is set to the number of elements, so any subsequent elements added will cause the backing array to be grown.
    • ShortSeq

      public ShortSeq(short[] array)
      Creates a new ordered array containing the elements in the specified array. The capacity is set to the number of elements, so any subsequent elements added will cause the backing array to be grown.
    • ShortSeq

      public ShortSeq(boolean ordered, short[] array, int startIndex, int count)
      Creates a new array containing the elements in the specified array. The capacity is set to the number of elements, so any subsequent elements added will cause the backing array to be grown.
      Parameters:
      ordered - If false, methods that remove elements may change the order of other elements in the array, which avoids a memory copy.
  • Method Details

    • with

      public static ShortSeq with(short... array)
      See Also:
    • add

      public void add(int value)
      Casts the specified value to short and adds it.
    • add

      public void add(short value)
    • add

      public void add(short value1, short value2)
    • add

      public void add(short value1, short value2, short value3)
    • add

      public void add(short value1, short value2, short value3, short value4)
    • addAll

      public void addAll(ShortSeq array)
    • addAll

      public void addAll(ShortSeq array, int offset, int length)
    • addAll

      public void addAll(short... array)
    • addAll

      public void addAll(short[] array, int offset, int length)
    • get

      public short get(int index)
    • set

      public void set(int index, short value)
    • incr

      public void incr(int index, short value)
    • mul

      public void mul(int index, short value)
    • insert

      public void insert(int index, short value)
    • swap

      public void swap(int first, int second)
    • contains

      public boolean contains(short value)
    • indexOf

      public int indexOf(short value)
    • lastIndexOf

      public int lastIndexOf(char value)
    • removeValue

      public boolean removeValue(short value)
    • removeIndex

      public short removeIndex(int index)
      Removes and returns the item at the specified index.
    • removeRange

      public void removeRange(int start, int end)
      Removes the items between the specified indices, inclusive.
    • removeAll

      public boolean removeAll(ShortSeq array)
      Removes from this array all of elements contained in the specified array.
      Returns:
      true if this array was modified.
    • pop

      public short pop()
      Removes and returns the last item.
    • peek

      public short peek()
      Returns the last item.
    • first

      public short first()
      Returns the first item.
    • isEmpty

      public boolean isEmpty()
      Returns true if the array is empty.
    • clear

      public void clear()
    • shrink

      public short[] shrink()
      Reduces the size of the backing array to the size of the actual items. This is useful to release memory when many items have been removed, or if it is known that more items will not be added.
      Returns:
      items
    • ensureCapacity

      public short[] ensureCapacity(int additionalCapacity)
      Increases the size of the backing array to accommodate the specified number of additional items. Useful before adding many items to avoid multiple backing array resizes.
      Returns:
      items
    • setSize

      public short[] setSize(int newSize)
      Sets the array size, leaving any values beyond the current size undefined.
      Returns:
      items
    • resize

      protected short[] resize(int newSize)
    • sort

      public void sort()
    • reverse

      public void reverse()
    • shuffle

      public void shuffle()
    • truncate

      public void truncate(int newSize)
      Reduces the size of the array to the specified size. If the array is already smaller than the specified size, no action is taken.
    • random

      public short random()
      Returns a random item from the array, or zero if the array is empty.
    • toArray

      public short[] toArray()
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object object)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toString

      public String toString(String separator)