Package pulse.util

Class ImmutableDataEntry<T,​R>

  • Type Parameters:
    T - the key
    R - the value
    All Implemented Interfaces:
    Serializable

    public class ImmutableDataEntry<T,​R>
    extends Object
    implements Serializable
    A DataEntry is an immutable ordered pair of an instance of T, which is considered to be the 'key', and an instance of R, which is considered to be the 'value'.
    See Also:
    Serialized Form
    • Constructor Detail

      • ImmutableDataEntry

        public ImmutableDataEntry​(T key,
                                  R value)
        Constructs a new DataEntry from key and value.
        Parameters:
        key - the key.
        value - the value associated with this key.
    • Method Detail

      • getKey

        public T getKey()
        Gets the key object
        Returns:
        the key
      • getValue

        public R getValue()
        Gets the value object
        Returns:
        the value