Package io.avaje.http.generator.core
Class PathSegments
- java.lang.Object
-
- io.avaje.http.generator.core.PathSegments
-
public class PathSegments extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPathSegments.Segment
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontains(String varName)StringfullPath()Return full path with{}StringfullPathColon()Return full path with colon for named path params (Javalin).List<PathSegments.Segment>matrixSegments()PathSegments.Segmentsegment(String varName)
-
-
-
Method Detail
-
matrixSegments
public List<PathSegments.Segment> matrixSegments()
-
segment
public PathSegments.Segment segment(String varName)
-
fullPath
public String fullPath()
Return full path with{}-
fullPathColon
public String fullPathColon()
Return full path with colon for named path params (Javalin).
-
-
-