The path segment of a URI. It is parameterized on the type representing the path. This can be a plain String, or a storage provider specific type.
The path segment of a URI. It is parameterized on the type representing the path. This can be a plain String, or a storage provider specific type.
Examples of storage provider types would be software.amazon.awssdk.services.s3.internal.resource.S3ObjectResource
for S3, com.google.storage.Blob for GCS, etc.
- See also
https://www.ietf.org/rfc/rfc3986.txt chapter 3.3, Path
- Companion
- object
Value members
Concrete methods
Compose with string to form a new Path
Compose with string to form a new Path
The underlying representation must be String in order for the representation and the path to be kept in sync. Use addSegment to modify paths backed by non-String types
- See also
addSegment
Adds a segment to the path while ensuring that the segments and path representation are kept in sync
Adds a segment to the path while ensuring that the segments and path representation are kept in sync
If you're just working with String paths, see /