public interface ImplicitPathMatcherConstruction
Modifier and Type | Method and Description |
---|---|
PathMatcher<scala.Tuple1<java.lang.String>> |
_regex2PathMatcher(scala.util.matching.Regex regex)
Creates a PathMatcher that consumes (a prefix of) the first path segment
if the path begins with a segment (a prefix of) which matches the given regex.
|
PathMatcher<scala.runtime.BoxedUnit> |
_segmentStringToPathMatcher(java.lang.String segment)
Creates a PathMatcher that consumes (a prefix of) the first path segment
(if the path begins with a segment).
|
<T> PathMatcher<scala.Tuple1<T>> |
_stringExtractionPair2PathMatcher(scala.Tuple2<java.lang.String,T> tuple)
Creates a PathMatcher that consumes (a prefix of) the first path segment
(if the path begins with a segment) and extracts a given value.
|
PathMatcher<scala.runtime.BoxedUnit> |
_stringNameOptionReceptacle2PathMatcher(NameOptionReceptacle<java.lang.String> nr) |
<T> PathMatcher<scala.Tuple1<T>> |
_valueMap2PathMatcher(scala.collection.immutable.Map<java.lang.String,T> valueMap)
Creates a PathMatcher from the given Map of path segments (prefixes) to extracted values.
|
PathMatcher<scala.Tuple1<java.lang.String>> _regex2PathMatcher(scala.util.matching.Regex regex)
regex
- (undocumented)PathMatcher<scala.runtime.BoxedUnit> _segmentStringToPathMatcher(java.lang.String segment)
segment
- (undocumented)<T> PathMatcher<scala.Tuple1<T>> _stringExtractionPair2PathMatcher(scala.Tuple2<java.lang.String,T> tuple)
tuple
- (undocumented)PathMatcher<scala.runtime.BoxedUnit> _stringNameOptionReceptacle2PathMatcher(NameOptionReceptacle<java.lang.String> nr)
nr
- (undocumented)<T> PathMatcher<scala.Tuple1<T>> _valueMap2PathMatcher(scala.collection.immutable.Map<java.lang.String,T> valueMap)
valueMap
- (undocumented)