class RoutingPath
Represents a parsed routing path. Consist of number of segments parts
val parts: List<RoutingPathSegment>
contains parsed routing path segments |
fun toString(): String |
val root: RoutingPath
A constant for root routing path |
fun parse(path: String): RoutingPath
Parse the specified path and create an instance of RoutingPath. It handles wildcards and decodes escape characters properly. |