Uses of Interface
io.github.grumpystuff.grumpyrest.request.stringparser.FromStringParser
Packages that use FromStringParser
Package
Description
-
Uses of FromStringParser in io.github.grumpystuff.grumpyrest
Methods in io.github.grumpystuff.grumpyrest with parameters of type FromStringParserModifier and TypeMethodDescriptionvoidRestApi.registerFromStringParser(FromStringParser parser) Registers a from-string parser to support new types of path parameters and querystring parameters. -
Uses of FromStringParser in io.github.grumpystuff.grumpyrest.request.stringparser
Methods in io.github.grumpystuff.grumpyrest.request.stringparser that return FromStringParserModifier and TypeMethodDescriptionprotected FromStringParserFromStringParserRegistry.generateRegistrable(Type type) Methods in io.github.grumpystuff.grumpyrest.request.stringparser with parameters of type FromStringParserModifier and TypeMethodDescriptionprotected booleanFromStringParserRegistry.registrableSupports(FromStringParser registrable, Type key) -
Uses of FromStringParser in io.github.grumpystuff.grumpyrest.request.stringparser.standard
Classes in io.github.grumpystuff.grumpyrest.request.stringparser.standard that implement FromStringParserModifier and TypeClassDescriptionfinal classEnumParser<T extends Enum<T>>A parser for enum types.final classParses integers from their usual decimal text representation.final classA parser forLocalDate.final classA parser forLocalDateTime.final classA parser forLocalTime.final classParses longs from their usual decimal text representation.final classParses an optional field, returning anOptionalFieldwhich wraps the parsed value (or nothing if the field to parse is absent).final classReturns the argument text as aStringwithout any actual parsing. -
Uses of FromStringParser in io.github.grumpystuff.grumpyrest.util
Methods in io.github.grumpystuff.grumpyrest.util with parameters of type FromStringParserModifier and TypeMethodDescriptionstatic ObjectNullReturnCheckingCalls.parseFromAbsentString(FromStringParser fromStringParser, Type type) NOT PUBLIC APIstatic ObjectNullReturnCheckingCalls.parseFromString(FromStringParser fromStringParser, String s, Type type) NOT PUBLIC API