Interface Float2LongFunction

All Superinterfaces:
DoubleToLongFunction, Function<Float,Long>, Function<Float,Long>
All Known Subinterfaces:
Float2LongMap, Float2LongSortedMap
All Known Implementing Classes:
AbstractFloat2LongFunction, AbstractFloat2LongMap, AbstractFloat2LongSortedMap, Float2LongArrayMap, Float2LongAVLTreeMap, Float2LongFunctions.EmptyFunction, Float2LongFunctions.PrimitiveFunction, Float2LongFunctions.Singleton, Float2LongFunctions.SynchronizedFunction, Float2LongFunctions.UnmodifiableFunction, Float2LongLinkedOpenHashMap, Float2LongMaps.EmptyMap, Float2LongMaps.Singleton, Float2LongMaps.SynchronizedMap, Float2LongMaps.UnmodifiableMap, Float2LongOpenCustomHashMap, Float2LongOpenHashMap, Float2LongRBTreeMap, Float2LongSortedMaps.EmptySortedMap, Float2LongSortedMaps.Singleton, Float2LongSortedMaps.SynchronizedSortedMap, Float2LongSortedMaps.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 Float2LongFunction extends Function<Float,Long>, DoubleToLongFunction
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

    • applyAsLong

      @Deprecated default long applyAsLong(double operand)
      Deprecated.
      Please use primitive types which do not have to be widened as keys.
      Specified by:
      applyAsLong in interface DoubleToLongFunction
      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 long put(float key, long 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

      long get(float 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 long getOrDefault(float key, long 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 long remove(float 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 Long put(Float key, Long 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<Float,Long>
      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 Long 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<Float,Long>
      Parameters:
      key - the key.
      Returns:
      the corresponding value, or null if no value was present for the given key.
      See Also:
    • getOrDefault

      @Deprecated default Long getOrDefault(Object key, Long 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<Float,Long>
      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 Long 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<Float,Long>
      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(float 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<Float,Long>
      Parameters:
      key - the key.
      Returns:
      true if this function associates a value to key.
      See Also:
    • defaultReturnValue

      default void defaultReturnValue(long 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 long 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,Long> compose(Function<? super T,? extends Float> before)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      compose in interface Function<Float,Long>
    • andThen

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

      default Float2ByteFunction andThenByte(Long2ByteFunction after)
    • composeByte

      default Byte2LongFunction composeByte(Byte2FloatFunction before)
    • andThenShort

      default Float2ShortFunction andThenShort(Long2ShortFunction after)
    • composeShort

      default Short2LongFunction composeShort(Short2FloatFunction before)
    • andThenInt

      default Float2IntFunction andThenInt(Long2IntFunction after)
    • composeInt

      default Int2LongFunction composeInt(Int2FloatFunction before)
    • andThenLong

      default Float2LongFunction andThenLong(Long2LongFunction after)
    • composeLong

      default Long2LongFunction composeLong(Long2FloatFunction before)
    • andThenChar

      default Float2CharFunction andThenChar(Long2CharFunction after)
    • composeChar

      default Char2LongFunction composeChar(Char2FloatFunction before)
    • andThenFloat

      default Float2FloatFunction andThenFloat(Long2FloatFunction after)
    • composeFloat

      default Float2LongFunction composeFloat(Float2FloatFunction before)
    • andThenDouble

      default Float2DoubleFunction andThenDouble(Long2DoubleFunction after)
    • composeDouble

      default Double2LongFunction composeDouble(Double2FloatFunction before)
    • andThenObject

      default <T> Float2ObjectFunction<T> andThenObject(Long2ObjectFunction<? extends T> after)
    • composeObject

      default <T> Object2LongFunction<T> composeObject(Object2FloatFunction<? super T> before)
    • andThenReference

      default <T> Float2ReferenceFunction<T> andThenReference(Long2ReferenceFunction<? extends T> after)
    • composeReference

      default <T> Reference2LongFunction<T> composeReference(Reference2FloatFunction<? super T> before)