Class ObservableCache.Node<T>

  • Type Parameters:
    T - the element type
    Enclosing class:
    ObservableCache<T>

    static final class ObservableCache.Node<T>
    extends java.lang.Object
    Represents a segment of the cached item list as part of a linked-node-list structure.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) ObservableCache.Node<T> next
      The next node if not null.
      (package private) T[] values
      The array of values held by this node.
    • Constructor Summary

      Constructors 
      Constructor Description
      Node​(int capacityHint)  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • values

        final T[] values
        The array of values held by this node.
    • Constructor Detail

      • Node

        Node​(int capacityHint)