Append path segments to the existing path. When constructing the final path, a '/' separator will be inserted between the existing path and the first path segment if necessary and each supplied segment will also be separated by '/'. Existing '/' characters are encoded thus a single value can only represent a single URI path segment.
@param segments the path segment values, each may contain URI templateparameters.
@return the updated UriBuilder.
@throws IllegalArgumentException if segments or any element of segmentsis {@code null}.
Returns the specified segment of this path, or null if the path does not have such a segment.
@param index the 0-based segment index
@return the specified segment, or null
Provides fast, indexed access to individual segments in the path segment array.
@exception java.lang.IndexOutOfBoundsException if i < 0 ori >= segmentCount().
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.