Uses of Record Class
org.rekex.regexp.RegExp.Boundary
-
Uses of RegExp.Boundary in org.rekex.regexp
Methods in org.rekex.regexp that return RegExp.BoundaryModifier and TypeMethodDescriptionstatic RegExp.BoundaryA boundary matcher, e.g.static RegExp.BoundaryRegExpApi.boundary_beginning_of_input()Same as `boundary("\\A")`static RegExp.BoundaryRegExpApi.boundary_beginning_of_line()Same as `boundary("^")`static RegExp.BoundaryRegExpApi.boundary_end_of_input()Same as `boundary("\\z")`static RegExp.BoundaryRegExpApi.boundary_end_of_input_but_for_final_terminator()Same as `boundary("\\Z")`static RegExp.BoundaryRegExpApi.boundary_end_of_line()Same as `boundary("$")`static RegExp.BoundaryRegExpApi.boundary_end_of_previous_match()Same as `boundary("\\G")`static RegExp.BoundaryRegExpApi.boundary_non_word_boundary()Same as `boundary("\\B")`static RegExp.BoundaryRegExpApi.boundary_word_boundary()Same as `boundary("\\b")`