I - type of the unparsed argument object (input)O - type of the parsed argument object (output)@FunctionalInterface public interface ArgumentParser<I,O>
For now, it's not possible to register a custom ArgumentParser, thus a default parser is used.
It follows a "pass-through" semantics, which means that the string located in the square-brackets is passed
"as-is" to the extract method.
It is not allowed to use square brackets within the argument string.
| Modifier and Type | Method and Description |
|---|---|
O |
parse(I input)
This method takes the unparsed argument object as an input and returns
the parsed output that will be used by the
ValueExtractor. |
O parse(I input)
ValueExtractor.input - extraction argument in the specified formatValueExtractorCopyright © 2019 Hazelcast, Inc.. All rights reserved.