Sea 0.2.2

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

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

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

Methods in gov.lbl.dsd.sea.nio.util that return ByteArrayList
 ByteArrayList ByteArrayList.copy()
          Returns a deep copy of the receiver.
 ByteArrayList ByteArrayList.subList(int from, int to)
          Returns a new list of the copied part of the receiver between from, inclusive, and to, exclusive.
 

Methods in gov.lbl.dsd.sea.nio.util with parameters of type ByteArrayList
 void ByteArrayList.add(ByteArrayList elems)
          Appends the specified elements to the end of this list.
 void ByteArrayList.insert(int index, ByteArrayList elems)
          Inserts the specified elements before the specified position into the receiver.
 boolean ByteArrayList.removeAll(ByteArrayList other)
          Removes from the receiver all elements that are contained in the specified list.
 void ByteArrayList.replace(int from, int length, ByteArrayList replacement)
          Replaces all elements[from..from+length-1] with the given replacement.
 boolean ByteArrayList.retainAll(ByteArrayList other)
          Retains (keeps) only the elements in the receiver that are contained in the specified other list.
 


Sea 0.2.2