Class UploadPartResponse
java.lang.Object
com.google.cloud.storage.multipartupload.model.UploadPartResponse
Represents the response from uploading a part in a multipart upload. It contains the ETag and
checksums of the uploaded part.
- Since:
- 2.60.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classA builder for creatingUploadPartResponseinstances. -
Method Summary
Modifier and TypeMethodDescriptionstatic UploadPartResponse.Builderbuilder()Creates a new builder for creating anUploadPartResponse.crc32c()Returns the CRC32C checksum of the uploaded part.booleaneTag()Returns the ETag of the uploaded part.inthashCode()md5()Returns the MD5 hash of the uploaded part.toString()
-
Method Details
-
eTag
Returns the ETag of the uploaded part.- Returns:
- The ETag.
- Since:
- 2.60.0
-
md5
Returns the MD5 hash of the uploaded part.- Returns:
- The MD5 hash.
- Since:
- 2.60.0
-
crc32c
Returns the CRC32C checksum of the uploaded part.- Returns:
- The CRC32C checksum.
- Since:
- 2.61.0
-
equals
-
hashCode
public int hashCode() -
toString
-
builder
Creates a new builder for creating anUploadPartResponse.- Returns:
- A new builder.
- Since:
- 2.60.0
-