Sea 0.4.0

Uses of Class
gov.lbl.dsd.sea.nio.util.ArrayIntList

Packages that use ArrayIntList
gov.lbl.dsd.sea.nio.util Various convenient utilities. 
 

Uses of ArrayIntList in gov.lbl.dsd.sea.nio.util
 

Methods in gov.lbl.dsd.sea.nio.util that return ArrayIntList
 ArrayIntList ArrayIntList.add(int elem)
          Appends the specified element to the end of this list.
 ArrayIntList ArrayIntList.add(int[] elems, int offset, int length)
          Appends the elements in the range [offset..offset+length) to the end of this list.
 ArrayIntList ArrayIntList.add(ArrayIntList elems)
          Appends the specified elements to the end of this list.
 ArrayIntList ArrayIntList.add(IntBuffer elems)
          Appends the remaining buffer elements to the end of this list.
 ArrayIntList ArrayIntList.clear()
          Removes all elements but keeps the current capacity; Afterwards size() will yield zero.
 ArrayIntList ArrayIntList.copy()
          Constructs and returns a new list that is a deep copy of the receiver.
 ArrayIntList ArrayIntList.subList(int from, int to)
          Constructs and returns a new list containing a copy of the elements in the range [from..to).
 

Methods in gov.lbl.dsd.sea.nio.util with parameters of type ArrayIntList
 ArrayIntList ArrayIntList.add(ArrayIntList elems)
          Appends the specified elements to the end of this list.
 int ArrayIntList.findReplace(int from, int to, ArrayIntList pattern, ArrayIntList replacement)
          Finds all matching sublists in the range [from..to) and replaces them with the given replacement.
 int ArrayIntList.indexOf(int from, int to, ArrayIntList subList)
          Returns the index of the first occurrence of the given sublist within the range this[from..to).
 int ArrayIntList.lastIndexOf(int from, int to, ArrayIntList subList)
          Returns the index of the last occurrence of the given sublist within the range this[from..to).
 boolean ArrayIntList.removeAll(ArrayIntList other, boolean isOtherSorted)
          Removes from the receiver all elements that are contained in the specified other list.
 void ArrayIntList.replace(int from, int to, ArrayIntList replacement)
          Replaces all elements in the range [from..to) with the given replacement.
 boolean ArrayIntList.retainAll(ArrayIntList other, boolean isOtherSorted)
          Retains (keeps) only the elements in the receiver that are contained in the specified other list.
 


Sea 0.4.0