Interface CodecGroupingFunction4<CI1,CI2,CI3,CI4,R>

Type Parameters:
CI1 - The type of the first input
CI2 - The type of the second input
CI3 - The type of the third input
CI4 - The type of the fourth input
R - The result type
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 CodecGroupingFunction4<CI1,CI2,CI3,CI4,R>
Represents a codec grouping function that accepts four arguments and produces a result.
Manly used for decoding objects using a Codec.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(CI1 input1, CI2 input2, CI3 input3, CI4 input4)
    Constructs a new object using the given inputs.
  • Method Details

    • create

      @NotNull R create(@NotNull CI1 input1, @NotNull CI2 input2, @NotNull CI3 input3, @NotNull CI4 input4)
      Constructs a new object using the given inputs.
      Parameters:
      input1 - The first input
      input2 - The second input
      input3 - The third input
      input4 - The fourth input
      Returns:
      The constructed object