Class StandardTable.Row

    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.util.AbstractMap

        java.util.AbstractMap.SimpleEntry<K extends java.lang.Object,​V extends java.lang.Object>, java.util.AbstractMap.SimpleImmutableEntry<K extends java.lang.Object,​V extends java.lang.Object>
      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) java.util.Map<C,​V> backingRowMap  
      (package private) R rowKey  
    • Constructor Summary

      Constructors 
      Constructor Description
      Row​(R rowKey)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void clear()  
      (package private) java.util.Map<C,​V> computeBackingRowMap()  
      boolean containsKey​(java.lang.Object key)  
      (package private) java.util.Iterator<java.util.Map.Entry<C,​V>> entryIterator()  
      (package private) java.util.Spliterator<java.util.Map.Entry<C,​V>> entrySpliterator()  
      V get​(java.lang.Object key)  
      (package private) void maintainEmptyInvariant()  
      V put​(C key, V value)  
      V remove​(java.lang.Object key)  
      int size()  
      (package private) void updateBackingRowMapField()  
      (package private) java.util.Map.Entry<C,​V> wrapEntry​(java.util.Map.Entry<C,​V> entry)  
      • Methods inherited from class java.util.AbstractMap

        clone, containsValue, equals, hashCode, isEmpty, keySet, putAll, toString, values
      • Methods inherited from class java.lang.Object

        finalize, getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Map

        compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
    • Field Detail

      • rowKey

        final R rowKey
      • backingRowMap

        @CheckForNull
        java.util.Map<C,​V> backingRowMap
    • Constructor Detail

      • Row

        Row​(R rowKey)
    • Method Detail

      • updateBackingRowMapField

        final void updateBackingRowMapField()
      • computeBackingRowMap

        @CheckForNull
        java.util.Map<C,​V> computeBackingRowMap()
      • maintainEmptyInvariant

        void maintainEmptyInvariant()
      • containsKey

        public boolean containsKey​(@CheckForNull
                                   java.lang.Object key)
        Specified by:
        containsKey in interface java.util.Map<C,​V>
        Overrides:
        containsKey in class java.util.AbstractMap<C,​V>
      • get

        @CheckForNull
        public V get​(@CheckForNull
                     java.lang.Object key)
        Specified by:
        get in interface java.util.Map<C,​V>
        Overrides:
        get in class java.util.AbstractMap<C,​V>
      • put

        @CheckForNull
        public V put​(C key,
                     V value)
        Specified by:
        put in interface java.util.Map<C,​V>
        Overrides:
        put in class java.util.AbstractMap<C,​V>
      • remove

        @CheckForNull
        public V remove​(@CheckForNull
                        java.lang.Object key)
        Specified by:
        remove in interface java.util.Map<C,​V>
        Overrides:
        remove in class java.util.AbstractMap<C,​V>
      • wrapEntry

        java.util.Map.Entry<C,​V> wrapEntry​(java.util.Map.Entry<C,​V> entry)