T - the type of the object that will be produced after parsing the input value.@FunctionalInterface public interface MarshallableParser<T>
MarshallableParser functional interface.
It provides a contract for parsing methods that convert a given ValueIn into an instance of type T.
Designed to be used in scenarios where marshalling is required to transform input values into desired data types.| Modifier and Type | Method and Description |
|---|---|
T |
parse(ValueIn valueIn)
Parses the provided
ValueIn into an instance of type T. |
Copyright © 2024. All rights reserved.