Class AtomicArray.Entry<E>

  • Enclosing class:
    AtomicArray < E>


    public static class AtomicArray.Entry<E>
    extends Object
    An entry within the array.
    • Field Detail

      • index

        public final int index
        The original index of the value within the array.
      • value

        public final E value
        The value.
    • Constructor Detail

      • Entry

        public Entry(int index,
                     E value)