Class Route

  • Direct Known Subclasses:
    ParameterizedRoute

    @Immutable
    public class Route
    extends java.lang.Object
    • Field Detail

      • ROOT

        public static Route ROOT
    • Constructor Detail

      • Route

        public Route​(java.util.List<RouteElement> elements)
      • Route

        public Route​(java.lang.String routeString)
    • Method Detail

      • extractVariables

        public java.util.List<java.lang.String> extractVariables​(java.lang.String path)
                                                          throws java.lang.IllegalStateException
        Throws:
        java.lang.IllegalStateException
      • extractVariables

        public java.util.List<java.lang.String> extractVariables​(Path path)
                                                          throws java.lang.IllegalStateException
        Compiles a list of all the arguments contained within the given path. For example, consider the route string "/users/*\/pets/*" and the path "/users/duncan/pets/cocoa". The returned list would be ["duncan", "cocoa"].
        Throws:
        java.lang.IllegalStateException - if the given pathString is not of the same form as this route.
      • resolve

        public Route resolve​(Route suffix)
      • withoutLeadingElement

        public Route withoutLeadingElement()
      • getElements

        public java.util.List<RouteElement> getElements()
      • isRoot

        public boolean isRoot()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • concat

        public static Route concat​(Route... routes)