Interface RawParser<R extends @NonNull Object>

Type Parameters:
R - The raw type.
All Superinterfaces:
Function<String,Mono<R>>
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 RawParser<R extends @NonNull Object> extends Function<String,Mono<R>>
Parser function that converts a string into one of the supported raw types.
Since:
1.0
Version:
1.0
API Note:
You would normally never need to manually implement this, as this interface already provides parsers for all the supported types through constants and static methods.