Class PathHelper


  • public class PathHelper
    extends Object
    A utility class for handling URI template parameters. As the Java regulare expressions package does not handle named groups, this class attempts to simulate that functionality by using groups.
    Since:
    1.0 Nov 8, 2006
    Author:
    Ryan J. McDonough, Bill Burke
    • Field Detail

      • URI_PARAM_PATTERN

        public static final Pattern URI_PARAM_PATTERN
      • URI_TEMPLATE_PATTERN

        public static final Pattern URI_TEMPLATE_PATTERN
        A regex pattern that searches for a URI template parameter in the form of {*}
    • Constructor Detail

      • PathHelper

        public PathHelper()
    • Method Detail

      • replaceEnclosedCurlyBraces

        public static String replaceEnclosedCurlyBraces​(String str)
      • recoverEnclosedCurlyBraces

        public static String recoverEnclosedCurlyBraces​(String str)