Schnittstelle ByteCharUnaryOperator

Alle Superschnittstellen:
BiFunction<Byte,Character,Character>

public interface ByteCharUnaryOperator extends BiFunction<Byte,Character,Character>
A Type Specific Unary Operator to support Compute/Merge functions with type specific methods to reduce boxing/unboxing
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    default Character
     
    char
    applyAsChar(byte k, char v)
    A Type Specifc apply method to reduce boxing/unboxing.

    Von Schnittstelle geerbte Methoden java.util.function.BiFunction

    andThen
  • Methodendetails

    • applyAsChar

      char applyAsChar(byte k, char v)
      A Type Specifc apply method to reduce boxing/unboxing. Applies this function to the given arguments.
      Parameter:
      k - the first function argument
      v - the second function argument
      Gibt zurück:
      the function result
    • apply

      default Character apply(Byte k, Character v)
      Angegeben von:
      apply in Schnittstelle BiFunction<Byte,Character,Character>