Sea 0.4.0

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

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

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

Methods in gov.lbl.dsd.sea.nio.util that return ArrayByteList
 ArrayByteList ArrayByteList.add(byte elem)
          Appends the specified element to the end of this list.
 ArrayByteList ArrayByteList.add(byte[] elems, int offset, int length)
          Appends the elements in the range [offset..offset+length) to the end of this list.
 ArrayByteList ArrayByteList.add(ArrayByteList elems)
          Appends the specified elements to the end of this list.
 ArrayByteList ArrayByteList.add(ByteBuffer elems)
          Appends the remaining buffer elements to the end of this list.
 ArrayByteList ArrayByteList.add(CharSequence str, Charset charset)
          Appends the encoded form of the given char sequence (String, StringBuffer, CharBuffer, etc).
 ArrayByteList ArrayByteList.add(InputStream elems)
          Appends the remaining elements of the stream to the end of this list, reading until end-of-stream.
 ArrayByteList ArrayByteList.add(ReadableByteChannel elems)
          Appends the remaining elements of the channel to the end of this list, reading until end-of-stream.
 ArrayByteList ArrayByteList.clear()
          Removes all elements but keeps the current capacity; Afterwards size() will yield zero.
 ArrayByteList ArrayByteList.copy()
          Constructs and returns a new list that is a deep copy of the receiver.
 ArrayByteList ArrayByteList.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 ArrayByteList
static void COBSCodec.encode(byte[] src, int from, int to, ArrayByteList dest)
          Adds (appends) the encoded representation of the range src[from..to) to the given destination list.
static void COBSCodec.decode(byte[] src, int from, int to, ArrayByteList dest)
          Adds (appends) the decoded representation of the range src[from..to) to the given destination list.
 ArrayByteList ArrayByteList.add(ArrayByteList elems)
          Appends the specified elements to the end of this list.
 int ArrayByteList.findReplace(int from, int to, ArrayByteList pattern, ArrayByteList replacement)
          Finds all matching sublists in the range [from..to) and replaces them with the given replacement.
 int ArrayByteList.indexOf(int from, int to, ArrayByteList subList)
          Returns the index of the first occurrence of the given sublist within the range this[from..to).
 int ArrayByteList.lastIndexOf(int from, int to, ArrayByteList subList)
          Returns the index of the last occurrence of the given sublist within the range this[from..to).
 boolean ArrayByteList.removeAll(ArrayByteList other)
          Removes from the receiver all elements that are contained in the specified other list.
 void ArrayByteList.replace(int from, int to, ArrayByteList replacement)
          Replaces all elements in the range [from..to) with the given replacement.
 boolean ArrayByteList.retainAll(ArrayByteList other)
          Retains (keeps) only the elements in the receiver that are contained in the specified other list.
 


Sea 0.4.0