Package org.jboss.resteasy.specimpl
Class PathSegmentImpl
- java.lang.Object
-
- org.jboss.resteasy.specimpl.PathSegmentImpl
-
- All Implemented Interfaces:
PathSegment
public class PathSegmentImpl extends Object implements PathSegment
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPathSegmentImpl.SegmentParseUsed when creating the matching path in ResteasyUriInfo
-
Constructor Summary
Constructors Constructor Description PathSegmentImpl(String segment, boolean decode)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MultivaluedMap<String,String>getMatrixParameters()Get a map of the matrix parameters associated with the path segment.StringgetOriginal()StringgetPath()Get the path segment.booleanhasMatrixParams()NOTE: Used for optimization in ResteasyUriInfostatic List<PathSegment>parseSegments(String path, boolean decode)static PathSegmentImpl.SegmentParseparseSegmentsOptimization(String path, boolean decode)StringtoString()
-
-
-
Constructor Detail
-
PathSegmentImpl
public PathSegmentImpl(String segment, boolean decode)
- Parameters:
segment- encoded path segmentdecode- whether or not to decode values
-
-
Method Detail
-
hasMatrixParams
public boolean hasMatrixParams()
NOTE: Used for optimization in ResteasyUriInfo- Returns:
- true if path segment contains matrix parameters
-
getOriginal
public String getOriginal()
-
getPath
public String getPath()
Description copied from interface:PathSegmentGet the path segment.- Specified by:
getPathin interfacePathSegment- Returns:
- the path segment
-
getMatrixParameters
public MultivaluedMap<String,String> getMatrixParameters()
Description copied from interface:PathSegmentGet a map of the matrix parameters associated with the path segment. The map keys are the names of the matrix parameters with any percent-escaped octets decoded.- Specified by:
getMatrixParametersin interfacePathSegment- Returns:
- the map of matrix parameters
- See Also:
- Matrix URIs
-
parseSegments
public static List<PathSegment> parseSegments(String path, boolean decode)
-
parseSegmentsOptimization
public static PathSegmentImpl.SegmentParse parseSegmentsOptimization(String path, boolean decode)
- Parameters:
path- encoded full pathdecode- whether or not to decode each segment- Returns:
PathSegmentImpl.SegmentParse
-
-