Class TSynchronizedByteList

    • Constructor Detail

      • TSynchronizedByteList

        public TSynchronizedByteList(TByteList list)
      • TSynchronizedByteList

        public TSynchronizedByteList(TByteList list,
                                     Object mutex)
    • Method Detail

      • equals

        public boolean equals(Object o)
      • hashCode

        public int hashCode()
      • get

        public byte get(int index)
      • set

        public byte set(int index,
                        byte element)
      • set

        public void set(int offset,
                        byte[] values)
      • set

        public void set(int offset,
                        byte[] values,
                        int valOffset,
                        int length)
      • replace

        public byte replace(int offset,
                            byte val)
      • remove

        public void remove(int offset,
                           int length)
      • removeAt

        public byte removeAt(int offset)
      • add

        public void add(byte[] vals)
      • add

        public void add(byte[] vals,
                        int offset,
                        int length)
      • insert

        public void insert(int offset,
                           byte value)
      • insert

        public void insert(int offset,
                           byte[] values)
      • insert

        public void insert(int offset,
                           byte[] values,
                           int valOffset,
                           int len)
      • indexOf

        public int indexOf(byte o)
      • lastIndexOf

        public int lastIndexOf(byte o)
      • subList

        public TByteList subList(int fromIndex,
                                 int toIndex)
      • toArray

        public byte[] toArray(int offset,
                              int len)
      • toArray

        public byte[] toArray(byte[] dest,
                              int offset,
                              int len)
      • toArray

        public byte[] toArray(byte[] dest,
                              int source_pos,
                              int dest_pos,
                              int len)
      • indexOf

        public int indexOf(int offset,
                           byte value)
      • lastIndexOf

        public int lastIndexOf(int offset,
                               byte value)
      • fill

        public void fill(byte val)
      • fill

        public void fill(int fromIndex,
                         int toIndex,
                         byte val)
      • reverse

        public void reverse()
      • reverse

        public void reverse(int from,
                            int to)
      • shuffle

        public void shuffle(Random rand)
      • sort

        public void sort()
      • sort

        public void sort(int fromIndex,
                         int toIndex)
      • binarySearch

        public int binarySearch(byte value)
      • binarySearch

        public int binarySearch(byte value,
                                int fromIndex,
                                int toIndex)
      • max

        public byte max()
      • min

        public byte min()
      • sum

        public byte sum()
      • forEachDescending

        public boolean forEachDescending(TByteProcedure procedure)
      • transformValues

        public void transformValues(TByteFunction function)