Interface CodecGroupingFunction14<CI1,CI2,CI3,CI4,CI5,CI6,CI7,CI8,CI9,CI10,CI11,CI12,CI13,CI14,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
CI5 - The type of the fifth input
CI6 - The type of the sixth input
CI7 - The type of the seventh input
CI8 - The type of the eighth input
CI9 - The type of the ninth input
CI10 - The type of the tenth input
CI11 - The type of the eleventh input
CI12 - The type of the twelfth input
CI13 - The type of the thirteenth input
CI14 - The type of the fourteenth 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 CodecGroupingFunction14<CI1,CI2,CI3,CI4,CI5,CI6,CI7,CI8,CI9,CI10,CI11,CI12,CI13,CI14,R>
Represents a codec grouping function that accepts fourteen 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, CI5 input5, CI6 input6, CI7 input7, CI8 input8, CI9 input9, CI10 input10, CI11 input11, CI12 input12, CI13 input13, CI14 input14)
    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, @NotNull CI5 input5, @NotNull CI6 input6, @NotNull CI7 input7, @NotNull CI8 input8, @NotNull CI9 input9, @NotNull CI10 input10, @NotNull CI11 input11, @NotNull CI12 input12, @NotNull CI13 input13, @NotNull CI14 input14)
      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
      input5 - The fifth input
      input6 - The sixth input
      input7 - The seventh input
      input8 - The eighth input
      input9 - The ninth input
      input10 - The tenth input
      input11 - The eleventh input
      input12 - The twelfth input
      input13 - The thirteenth input
      input14 - The fourteenth input
      Returns:
      The constructed object