Interface Short2IntFunction

All Superinterfaces:
Function<Short,Integer>, Function<Short,Integer>, IntUnaryOperator
All Known Subinterfaces:
Short2IntMap, Short2IntSortedMap
All Known Implementing Classes:
AbstractShort2IntFunction, AbstractShort2IntMap, AbstractShort2IntSortedMap, Short2IntArrayMap, Short2IntAVLTreeMap, Short2IntFunctions.EmptyFunction, Short2IntFunctions.PrimitiveFunction, Short2IntFunctions.Singleton, Short2IntFunctions.SynchronizedFunction, Short2IntFunctions.UnmodifiableFunction, Short2IntLinkedOpenHashMap, Short2IntMaps.EmptyMap, Short2IntMaps.Singleton, Short2IntMaps.SynchronizedMap, Short2IntMaps.UnmodifiableMap, Short2IntOpenCustomHashMap, Short2IntOpenHashMap, Short2IntRBTreeMap, Short2IntSortedMaps.EmptySortedMap, Short2IntSortedMaps.Singleton, Short2IntSortedMaps.SynchronizedSortedMap, Short2IntSortedMaps.UnmodifiableSortedMap
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Short2IntFunction extends Function<Short,Integer>, IntUnaryOperator
A type-specific Function; provides some additional methods that use polymorphism to avoid (un)boxing.

Type-specific versions of get(), put() and remove() cannot rely on null to denote absence of a key. Rather, they return a default return value, which is set to 0/false at creation, but can be changed using the defaultReturnValue() method.

For uniformity reasons, even functions returning objects implement the default return value (of course, in this case the default return value is initialized to null).

The default implementation of optional operations just throw an UnsupportedOperationException, except for the type-specific containsKey(), which return true. Generic versions of accessors delegate to the corresponding type-specific counterparts following the interface rules.

Warning: to fall in line as much as possible with the standard map interface, it is required that standard versions of get(), put() and remove() for maps with primitive-type keys or values return null to denote missing keys rather than wrap the default return value in an object. In case both keys and values are reference types, the default return value must be returned instead, thus violating the standard map interface when the default return value is not null.

See Also:
  • Method Details

    • applyAsInt

      @Deprecated default int applyAsInt(int operand)
      Deprecated.
      Please use primitive types which do not have to be widened as keys.
      Specified by:
      applyAsInt in interface IntUnaryOperator
      Throws:
      IllegalArgumentException - If the given operand is not an element of the key domain.
      Since:
      8.0.0
      Implementation Specification:
      This default implementation delegates to the type-specific get() method after narrowing down the key to the actual key type, throwing an exception if the given key cannot be represented in the restricted domain. This is done for interoperability with the Java 8 function environment. The use of this method is discouraged, as unexpected errors can occur. Instead, the corresponding classes should be used (e.g., Int2IntFunction instead of Short2IntFunction).
    • put

      default int put(short key, int value)
      Adds a pair to the map (optional operation).
      Parameters:
      key - the key.
      value - the value.
      Returns:
      the old value, or the default return value if no value was present for the given key.
      See Also:
    • get

      int get(short key)
      Returns the value to which the given key is mapped.
      Parameters:
      key - the key.
      Returns:
      the corresponding value, or the default return value if no value was present for the given key.
      See Also:
    • getOrDefault

      default int getOrDefault(short key, int defaultValue)
      Returns the value associated by this function to the specified key, or give the specified value if not present.
      Parameters:
      key - the key.
      defaultValue - the value to return if not present.
      Returns:
      the corresponding value, or defaultValue if no value was present for the given key.
      Since:
      8.5.0
      See Also:
    • remove

      default int remove(short key)
      Removes the mapping with the given key (optional operation).
      Parameters:
      key - the key.
      Returns:
      the old value, or the default return value if no value was present for the given key.
      See Also:
    • put

      @Deprecated default Integer put(Short key, Integer value)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Associates the specified value with the specified key in this function (optional operation).
      Specified by:
      put in interface Function<Short,Integer>
      Parameters:
      key - the key.
      value - the value.
      Returns:
      the old value, or null if no value was present for the given key.
      See Also:
    • get

      @Deprecated default Integer get(Object key)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns the value associated by this function to the specified key.
      Specified by:
      get in interface Function<Short,Integer>
      Parameters:
      key - the key.
      Returns:
      the corresponding value, or null if no value was present for the given key.
      See Also:
    • getOrDefault

      @Deprecated default Integer getOrDefault(Object key, Integer defaultValue)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns the value associated by this function to the specified key, or give the specified value if not present.
      Specified by:
      getOrDefault in interface Function<Short,Integer>
      Parameters:
      key - the key.
      defaultValue - the default value to return if not present.
      Returns:
      the corresponding value, or defaultValue if no value was present for the given key.
      See Also:
    • remove

      @Deprecated default Integer remove(Object key)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Removes this key and the associated value from this function if it is present (optional operation).
      Specified by:
      remove in interface Function<Short,Integer>
      Parameters:
      key - the key.
      Returns:
      the old value, or null if no value was present for the given key.
      See Also:
    • containsKey

      default boolean containsKey(short key)
      Returns true if this function contains a mapping for the specified key.

      Note that for some kind of functions (e.g., hashes) this method will always return true. In particular, this default implementation always returns true.

      Parameters:
      key - the key.
      Returns:
      true if this function associates a value to key.
      See Also:
    • containsKey

      @Deprecated default boolean containsKey(Object key)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns true if this function contains a mapping for the specified key.

      Note that for some kind of functions (e.g., hashes) this method will always return true. This default implementation, in particular, always return true.

      Specified by:
      containsKey in interface Function<Short,Integer>
      Parameters:
      key - the key.
      Returns:
      true if this function associates a value to key.
      See Also:
    • defaultReturnValue

      default void defaultReturnValue(int rv)
      Sets the default return value (optional operation). This value must be returned by type-specific versions of get(), put() and remove() to denote that the map does not contain the specified key. It must be 0/false/null by default.
      Parameters:
      rv - the new default return value.
      See Also:
    • defaultReturnValue

      default int defaultReturnValue()
      Gets the default return value.

      This default implementation just return the default null value of the type (null for objects, 0 for scalars, false for Booleans).

      Returns:
      the current default return value.
    • compose

      @Deprecated default <T> Function<T,Integer> compose(Function<? super T,? extends Short> before)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      compose in interface Function<Short,Integer>
    • andThen

      @Deprecated default <T> Function<Short,T> andThen(Function<? super Integer,? extends T> after)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      andThen in interface Function<Short,Integer>
    • andThenByte

      default Short2ByteFunction andThenByte(Int2ByteFunction after)
    • composeByte

      default Byte2IntFunction composeByte(Byte2ShortFunction before)
    • andThenShort

      default Short2ShortFunction andThenShort(Int2ShortFunction after)
    • composeShort

      default Short2IntFunction composeShort(Short2ShortFunction before)
    • andThenInt

      default Short2IntFunction andThenInt(Int2IntFunction after)
    • composeInt

      default Int2IntFunction composeInt(Int2ShortFunction before)
    • andThenLong

      default Short2LongFunction andThenLong(Int2LongFunction after)
    • composeLong

      default Long2IntFunction composeLong(Long2ShortFunction before)
    • andThenChar

      default Short2CharFunction andThenChar(Int2CharFunction after)
    • composeChar

      default Char2IntFunction composeChar(Char2ShortFunction before)
    • andThenFloat

      default Short2FloatFunction andThenFloat(Int2FloatFunction after)
    • composeFloat

      default Float2IntFunction composeFloat(Float2ShortFunction before)
    • andThenDouble

      default Short2DoubleFunction andThenDouble(Int2DoubleFunction after)
    • composeDouble

      default Double2IntFunction composeDouble(Double2ShortFunction before)
    • andThenObject

      default <T> Short2ObjectFunction<T> andThenObject(Int2ObjectFunction<? extends T> after)
    • composeObject

      default <T> Object2IntFunction<T> composeObject(Object2ShortFunction<? super T> before)
    • andThenReference

      default <T> Short2ReferenceFunction<T> andThenReference(Int2ReferenceFunction<? extends T> after)
    • composeReference

      default <T> Reference2IntFunction<T> composeReference(Reference2ShortFunction<? super T> before)