org.jboss.resteasy.util
Class PathHelper
java.lang.Object
org.jboss.resteasy.util.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
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
URI_PARAM_NAME_REGEX
public static final String URI_PARAM_NAME_REGEX
- See Also:
- Constant Field Values
URI_PARAM_REGEX_REGEX
public static final String URI_PARAM_REGEX_REGEX
- See Also:
- Constant Field Values
URI_PARAM_REGEX
public static final String URI_PARAM_REGEX
- See Also:
- Constant Field Values
URI_PARAM_WITH_REGEX
public static final String URI_PARAM_WITH_REGEX
- See Also:
- Constant Field Values
URI_PARAM_WITHOUT_REGEX
public static final String URI_PARAM_WITHOUT_REGEX
- See Also:
- Constant Field Values
URI_PARAM_PATTERN
public static final Pattern URI_PARAM_PATTERN
URI_PARAM_WITH_REGEX_PATTERN
public static final Pattern URI_PARAM_WITH_REGEX_PATTERN
URI_PARAM_WITHOUT_REGEX_PATTERN
public static final Pattern URI_PARAM_WITHOUT_REGEX_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 {*}
URI_TEMPLATE_REPLACE_PATTERN
public static final String URI_TEMPLATE_REPLACE_PATTERN
- See Also:
- Constant Field Values
openCurlyReplacement
public static final char openCurlyReplacement
- See Also:
- Constant Field Values
closeCurlyReplacement
public static final char closeCurlyReplacement
- See Also:
- Constant Field Values
PathHelper
public PathHelper()
getEncodedPathInfo
public static String getEncodedPathInfo(String path,
String contextPath)
replaceEnclosedCurlyBraces
public static String replaceEnclosedCurlyBraces(String str)
recoverEnclosedCurlyBraces
public static String recoverEnclosedCurlyBraces(String str)
Copyright © 2013. All Rights Reserved.