Schnittstelle FloatLongConsumer

Alle Superschnittstellen:
BiConsumer<Float,Long>

public interface FloatLongConsumer extends BiConsumer<Float,Long>
A Type Specific BiConsumer class to reduce boxing/unboxing and that fills the gaps that java has.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    void
    accept(float k, long v)
    A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.
    default void
    accept(Float k, Long v)
    Veraltet.
    Please use the corresponding type-specific function instead.
    andThen(BiConsumer<? super Float,? super Long> after)
    Veraltet.
    Please use the corresponding type-specific function instead.
    Type Specific sequencing method to reduce boxing/unboxing.
  • Methodendetails

    • accept

      void accept(float k, long v)
      A Type Specific operation method to reduce boxing/unboxing Performs this operation on the given arguments.
      Parameter:
      k - the first input argument
      v - the second input argument
    • andThen

      default FloatLongConsumer andThen(FloatLongConsumer after)
      Type Specific sequencing method to reduce boxing/unboxing.
      Parameter:
      after - a operation that should be performed afterwards
      Gibt zurück:
      a sequenced biconsumer that does 2 operations
      Löst aus:
      NullPointerException - if after is null
    • accept

      @Deprecated default void accept(Float k, Long v)
      Veraltet.
      Please use the corresponding type-specific function instead.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      accept in Schnittstelle BiConsumer<Float,Long>
    • andThen

      @Deprecated default FloatLongConsumer andThen(BiConsumer<? super Float,? super Long> after)
      Veraltet.
      Please use the corresponding type-specific function instead.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      andThen in Schnittstelle BiConsumer<Float,Long>