Class StandardTable.Column

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      private class  StandardTable.Column.EntrySet  
      private class  StandardTable.Column.EntrySetIterator  
      private class  StandardTable.Column.KeySet  
      private class  StandardTable.Column.Values  
      • 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) C columnKey  
    • Constructor Summary

      Constructors 
      Constructor Description
      Column​(C columnKey)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean containsKey​(java.lang.Object key)  
      (package private) java.util.Set<java.util.Map.Entry<R,​V>> createEntrySet()
      Creates the entry set to be returned by Maps.ViewCachingAbstractMap.entrySet().
      (package private) java.util.Set<R> createKeySet()  
      (package private) java.util.Collection<V> createValues()  
      V get​(java.lang.Object key)  
      V put​(R key, V value)  
      V remove​(java.lang.Object key)  
      (package private) boolean removeFromColumnIf​(Predicate<? super java.util.Map.Entry<R,​V>> predicate)
      Removes all Column mappings whose row key and value satisfy the given predicate.
      • Methods inherited from class java.util.AbstractMap

        clear, clone, containsValue, equals, hashCode, isEmpty, putAll, size, toString
      • 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

      • columnKey

        final C columnKey
    • Constructor Detail

      • Column

        Column​(C columnKey)
    • Method Detail

      • put

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

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

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

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

        boolean removeFromColumnIf​(Predicate<? super java.util.Map.Entry<R,​V>> predicate)
        Removes all Column mappings whose row key and value satisfy the given predicate.