Interface CodecGroupingFunction1<CI1,R>

Type Parameters:
CI1 - The type of the 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 CodecGroupingFunction1<CI1,R>
Represents a codec grouping function that accepts one argument and produces a result.
Manly used for decoding objects using a Codec.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(CI1 input1)
    Constructs a new object using the given input.
  • Method Details

    • create

      @NotNull R create(@NotNull CI1 input1)
      Constructs a new object using the given input.
      Parameters:
      input1 - The first input
      Returns:
      The constructed object