Uses of Interface
app.babylon.text.SliceParser
Packages that use SliceParser
-
Uses of SliceParser in app.babylon.table.column.type
Subinterfaces of SliceParser in app.babylon.table.column.typeModifier and TypeInterfaceDescriptioninterfaceTypeParser<T>Parses textual values into a target typed value. -
Uses of SliceParser in app.babylon.table.transform
Methods in app.babylon.table.transform with parameters of type SliceParserModifier and TypeMethodDescription<T> TTransformParseMode.apply(SliceParser<T> parser, String value) -
Uses of SliceParser in app.babylon.text
Methods in app.babylon.text that return SliceParserModifier and TypeMethodDescriptionstatic <T> SliceParser<T> SliceParser.from(Function<CharSequence, T> parser) Adapts an existing whole-sequence parser.Methods in app.babylon.text with parameters of type SliceParserModifier and TypeMethodDescriptionstatic <T> TSentence.firstIn(SliceParser<T> parser, CharSequence sentence) Finds the first parsed value in a space-separated sentence.static <T> TSentence.lastIn(SliceParser<T> parser, String sentence) Finds the last parsed value in a space-separated sentence.static <T> TSentence.lastIn(SliceParser<T> parser, String sentence, char separator) Finds the last parsed value in a sentence separated byseparator.static <T> TSentence.onlyIn(SliceParser<T> parser, CharSequence sentence) Finds the only parsed value in a space-separated sentence, ornullwhen no value or multiple values are found.