Uses of Interface
ratpack.path.PathBinderBuilder
-
Packages that use PathBinderBuilder Package Description ratpack.path Types for managing the paths of requests inside the application. -
-
Uses of PathBinderBuilder in ratpack.path
Methods in ratpack.path that return PathBinderBuilder Modifier and Type Method Description static PathBinderBuilderPathBinder. builder()Creates a new path binder builder.PathBinderBuilderPathBinderBuilder. literal(java.lang.String literal)Add a literal to the path.PathBinderBuilderPathBinderBuilder. literalPattern(java.lang.String pattern)Add a regular expression parameterized literal element to the path.PathBinderBuilderPathBinderBuilder. optionalToken(java.lang.String token)Add an optional token to the path.PathBinderBuilderPathBinderBuilder. optionalTokenWithPattern(java.lang.String token, java.lang.String pattern)Add a regular expression parameterized named optional token to the path.PathBinderBuilderPathBinderBuilder. token(java.lang.String token)Add a token to the path.PathBinderBuilderPathBinderBuilder. tokenWithPattern(java.lang.String token, java.lang.String pattern)Add a regular expression parameterized named token to the path.Method parameters in ratpack.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.
-