Interface Materializations.MultimapView<K,V>

Enclosing class:
Materializations

public static interface Materializations.MultimapView<K,V>
Represents the PrimitiveViewT supplied to the ViewFn when it declares to use the multimap materialization.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
    Returns an iterable of all keys.
    Returns an iterable of all the values for the specified key.
  • Method Details

    • get

      Iterable<K> get()
      Returns an iterable of all keys.
    • get

      Iterable<V> get(@Nullable K k)
      Returns an iterable of all the values for the specified key.