Class AbstractBiMap.BiMapEntry

    • Field Detail

      • delegate

        private final java.util.Map.Entry<K,​V> delegate
    • Constructor Detail

      • BiMapEntry

        BiMapEntry​(java.util.Map.Entry<K,​V> delegate)
    • Method Detail

      • delegate

        protected java.util.Map.Entry<K,​V> delegate()
        Description copied from class: ForwardingObject
        Returns the backing delegate instance that methods are forwarded to. Abstract subclasses generally override this method with an abstract method that has a more specific return type, such as ForwardingSet.delegate(). Concrete subclasses override this method to supply the instance being decorated.
        Specified by:
        delegate in class ForwardingMapEntry<K,​V>
      • setValue

        public V setValue​(V value)
        Specified by:
        setValue in interface java.util.Map.Entry<K,​V>
        Overrides:
        setValue in class ForwardingMapEntry<K,​V>