Interface Keys<K,V>

Type Parameters:
K - The type of the key.
V - The type of the value which relates to a key.
All Known Subinterfaces:
CanonicalMap, CanonicalMap.CanonicalMapBuilder, CanonicalMap.MutableCanonicalMap, ClassStructMap, ClassStructMap.ClassStructMapBuilder, ClassStructMap.MutableClassStructMap, Dictionary<K,V>, Dictionary.MutableDictionary<K,V>, Dictionary.MutableDictionary.DictionaryBuilder<K,V,B>, InterOperableMap<T>, InterOperableMap.InterOperableMapBuilder<T>, InterOperableMap.MutableInterOperableMap<T>, Keys.MutableKeys<K,V>, Keys.MutableValues<K,V>, PathMap<T>, PathMap.MutablePathMap<T>, PathMap.PathMapBuilder<T>, SimpleTypeMap, SimpleTypeMap.MutableSimpleTypeMap, SimpleTypeMap.SimpleTypeMapBuilder
All Known Implementing Classes:
CanonicalMapBuilderImpl, CanonicalMapImpl, ClassStructMapBuilderImpl, ClassStructMapImpl, PathMapBuilderImpl, PathMapImpl, SimpleTypeMapBuilderImpl, SimpleTypeMapImpl

public interface Keys<K,V>
This interface provides functionality for working with keys.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static interface 
    Adds mutable functionality to the Keys interface.
    static interface 
    Mixin for mutable functionality accompanying the Keys interface.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Tests whether there is an element with the given key.
    boolean
    This method is defined for the sake of Map conformity.
    get(Object aKey)
    Retrieves the element assigned to the given key.
    default V
    getOr(Object aKey, V aDefaultValue)
    Retrieves the element assigned to the given key or the provided default value if there is no such value for the given key.
    Retrieves a collection containing all the keys found in the elements of this collection.
    default V
    use(K aKey)
    Retrieves the element assigned to the given key.
    Returns a Collection view of the values related to the contained keys.
  • Method Details

    • containsKey

      boolean containsKey(Object aKey)
      Tests whether there is an element with the given key.
      Parameters:
      aKey - The key for which to test whether there is an element.
      Returns:
      True in case there is an element for the given key.
    • containsValue

      boolean containsValue(Object aValue)
      This method is defined for the sake of Map conformity. Tests whether the provided value has a key assigned.
      Parameters:
      aValue - The value to test if a key references this value.
      Returns:
      True in case the given value is referenced by a key.
    • get

      V get(Object aKey)
      Retrieves the element assigned to the given key.
      Parameters:
      aKey - The key for which to get the element.
      Returns:
      The value for the key in question or null if there is none such value.
    • getOr

      default V getOr(Object aKey, V aDefaultValue)
      Retrieves the element assigned to the given key or the provided default value if there is no such value for the given key.
      Parameters:
      aKey - The key for which to get the element.
      aDefaultValue - The default value in case there is no such value for the given key.
      Returns:
      The value for the key in question or the default value if there is none such value.
    • use

      default V use(K aKey) throws KeyNotFoundException
      Retrieves the element assigned to the given key. In case the given key does not exist, then an KeyNotFoundException is thrown.
      Parameters:
      aKey - The key for which to get the element.
      Returns:
      The value assigned to the given key.
      Throws:
      KeyNotFoundException - thrown in case this instance does not contain the requested element (no such key found in the collection).
    • keySet

      Set<K> keySet()
      Retrieves a collection containing all the keys found in the elements of this collection.
      Returns:
      A collection with key objects being the keys of all elements in this collection.
    • values

      Collection<V> values()
      Returns a Collection view of the values related to the contained keys.
      Returns:
      A Collection view of the values related to the contained keys.