Interface XGettingTable.Values<K,​V>

All Superinterfaces:
CapacityCarrying, ComponentType, Copyable, ExtendedBag<V>, ExtendedCollection<V>, ExtendedList<V>, ExtendedSequence<V>, Iterable<V>, Sized, XGettingBag<V>, XGettingCollection<V>, XGettingList<V>, XGettingMap.Satellite<K,​V>, XGettingMap.Values<K,​V>, XGettingSequence<V>, XGettingTable.Satellite<K,​V>, XIndexIterable<V>, XIterable<V>, XJoinable<V>
All Known Subinterfaces:
XBasicTable.Values<K,​V>, XChart.Values<K,​V>, XImmutableTable.Values<K,​V>, XTable.Values<K,​V>
All Known Implementing Classes:
ConstHashTable.Values, EqConstHashTable.Values, EqHashTable.Values, HashTable.Values
Enclosing interface:
XGettingTable<K,​V>

public static interface XGettingTable.Values<K,​V>
extends XGettingMap.Values<K,​V>, XGettingTable.Satellite<K,​V>, XGettingList<V>
  • Method Details

    • parent

      XGettingTable<K,​V> parent()
      Specified by:
      parent in interface XGettingMap.Satellite<K,​V>
      Specified by:
      parent in interface XGettingTable.Satellite<K,​V>
    • copy

      XGettingList<V> copy()
      Description copied from interface: XGettingCollection
      Creates a true copy of this collection which references the same elements as this collection does at the time the method is called. The elements themselves are NOT copied (no deep copying).
      The type of the returned set is the same as of this list if possible.
      Specified by:
      copy in interface Copyable
      Specified by:
      copy in interface XGettingBag<K>
      Specified by:
      copy in interface XGettingCollection<K>
      Specified by:
      copy in interface XGettingList<K>
      Specified by:
      copy in interface XGettingSequence<K>
      Returns:
      a copy of this list
    • iterate

      <P extends Consumer<? super V>> P iterate​(P procedure)
      Description copied from interface: XIterable
      Executes the given procedure for each element of the XIterable until all elements have been processed or the action throws an exception. Unless otherwise specified by the implementing class, procedures are performed in the order of iteration (if an iteration order is specified). Exceptions thrown by the procedure are relayed to the caller.
      Should be identical to Iterable.forEach(Consumer).
      Specified by:
      iterate in interface XIterable<K>
      Type Parameters:
      P - type of procedure
      Parameters:
      procedure - The procedure to be performed for each element
      Returns:
      Given procedure