Deprecated API
Contents
-
Deprecated ClassesClassDescriptionUse the
Parseroverloads that directly take acharacterClassstring parameter, such asParser.consecutive(String).UseParsers.Suffixinstead.
-
Deprecated MethodsMethodDescriptionUse
EmailAddress.of(String)insteaduseParsers.BMP_CODE_UNITinstead.UseParser.consecutive(String)insteadUsenotImmediatelyFollowedBy(noneOf("\r\n"))instead offollowedByOrEof(one("[\r\n]")).UseParser.one(String)insteadUseParser.followedByZeroOrMore(Parser)instead.UseParser.followedByZeroOrMore(Parser, BiFunction)instead.UseParser.followedByZeroOrMore(String, UnaryOperator)instead.UsewithPrefixes(prefix, suffix)insteadUseParser.zeroOrMore(String)instead.useRegexPattern.of(java.lang.String)insteadPreferOFFSET-FETCHclause, which is parameterizableUseSafeSql.of("{foo? -> OR foo?}", optionalFoo)instead ofoptionally("or {foo}", optionalFoo)because the former allows you to referencefoo?multiple times in the right hand side snippet.