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 PathBinderBuilderPathBinder. builder()Creates a new path binder builder.PathBinderBuilderPathBinderBuilder. literal(String literal)Add a literal to the path.PathBinderBuilderPathBinderBuilder. literalPattern(String pattern)Add a regular expression parameterized literal element to the path.PathBinderBuilderPathBinderBuilder. optionalToken(String token)Add an optional token to the path.PathBinderBuilderPathBinderBuilder. optionalTokenWithPattern(String token, String pattern)Add a regular expression parameterized named optional token to the path.PathBinderBuilderPathBinderBuilder. token(String token)Add a token to the path.PathBinderBuilderPathBinderBuilder. 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 PathBinderPathBinder. of(boolean exhaustive, Action<? super PathBinderBuilder> action)Builds a path binder programmatically.
-