Package akka.http.scaladsl.server
Class PathMatchers.NumberMatcher<T>
- java.lang.Object
-
- akka.http.scaladsl.server.PathMatcher<scala.Tuple1<T>>
-
- akka.http.scaladsl.server.PathMatchers.NumberMatcher<T>
-
- All Implemented Interfaces:
scala.Function1<Uri.Path,PathMatcher.Matching<scala.Tuple1<T>>>
- Direct Known Subclasses:
PathMatchers.HexIntNumber$
,PathMatchers.HexLongNumber$
,PathMatchers.IntNumber$
,PathMatchers.LongNumber$
- Enclosing interface:
- PathMatchers
public abstract static class PathMatchers.NumberMatcher<T> extends PathMatcher<scala.Tuple1<T>>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class akka.http.scaladsl.server.PathMatcher
PathMatcher.EnhancedPathMatcher<L>, PathMatcher.Lift<L,M>, PathMatcher.Lift$, PathMatcher.LowLevelLiftImplicits, PathMatcher.Matched<L>, PathMatcher.Matched$, PathMatcher.Matching<L>, PathMatcher.PathMatcher1Ops<T>, PathMatcher.Unmatched$
-
-
Constructor Summary
Constructors Constructor Description NumberMatcher(T max, T base, scala.math.Integral<T> x)
A PathMatcher that matches up to 128 remaining segments as a List[String].
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description PathMatcher.Matching<scala.Tuple1<T>>
apply(Uri.Path path)
abstract T
fromChar(char c)
T
fromDecimalChar(char c)
T
fromHexChar(char c)
T
maxDivBase()
T
minusOne()
-
Methods inherited from class akka.http.scaladsl.server.PathMatcher
_regex2PathMatcher, _segmentStringToPathMatcher, _stringExtractionPair2PathMatcher, _stringNameOptionReceptacle2PathMatcher, _valueMap2PathMatcher, append, apply, apply, EmptyMatch, ev, or, provide, repeat, repeat, repeat, slash, slash, tflatMap, tmap, transform
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface scala.Function1
andThen, apply$mcDD$sp, apply$mcDF$sp, apply$mcDI$sp, apply$mcDJ$sp, apply$mcFD$sp, apply$mcFF$sp, apply$mcFI$sp, apply$mcFJ$sp, apply$mcID$sp, apply$mcIF$sp, apply$mcII$sp, apply$mcIJ$sp, apply$mcJD$sp, apply$mcJF$sp, apply$mcJI$sp, apply$mcJJ$sp, apply$mcVD$sp, apply$mcVF$sp, apply$mcVI$sp, apply$mcVJ$sp, apply$mcZD$sp, apply$mcZF$sp, apply$mcZI$sp, apply$mcZJ$sp, compose, toString
-
-
-
-
Constructor Detail
-
NumberMatcher
public NumberMatcher(T max, T base, scala.math.Integral<T> x)
A PathMatcher that matches up to 128 remaining segments as a List[String]. This can also be no segments resulting in the empty list. If the path has a trailing slash this slash will *not* be matched.- Parameters:
max
- (undocumented)base
- (undocumented)x
- (undocumented)
-
-