Uses of Interface
ratpack.core.path.PathBinderBuilder
-
Packages that use PathBinderBuilder Package Description ratpack.core.path Types for managing the paths of requests inside the application. -
-
Uses of PathBinderBuilder in ratpack.core.path
Methods in ratpack.core.path that return PathBinderBuilder Modifier and Type Method Description static PathBinderBuilder
PathBinder. builder()
Creates a new path binder builder.PathBinderBuilder
PathBinderBuilder. literal(String literal)
Add a literal to the path.PathBinderBuilder
PathBinderBuilder. literalPattern(String pattern)
Add a regular expression parameterized literal element to the path.PathBinderBuilder
PathBinderBuilder. optionalToken(String token)
Add an optional token to the path.PathBinderBuilder
PathBinderBuilder. optionalTokenWithPattern(String token, String pattern)
Add a regular expression parameterized named optional token to the path.PathBinderBuilder
PathBinderBuilder. token(String token)
Add a token to the path.PathBinderBuilder
PathBinderBuilder. tokenWithPattern(String token, String pattern)
Add a regular expression parameterized named token to the path.Method parameters in ratpack.core.path with type arguments of type PathBinderBuilder Modifier and Type Method Description static PathBinder
PathBinder. of(boolean exhaustive, Action<? super PathBinderBuilder> action)
Builds a path binder programmatically.
-