Class DownloadResult (2.37.0)

public final class DownloadResult

Result for a single download performed by Transfer Manager. See Also: Builder

Inheritance

Object > DownloadResult

Static Methods

newBuilder(@NonNull BlobInfo blobInfo, @NonNull TransferStatus status)

public static DownloadResult.Builder newBuilder(@NonNull BlobInfo blobInfo, @NonNull TransferStatus status)
Parameters
Name Description
blobInfo @org.checkerframework.checker.nullness.qual.NonNull com.google.cloud.storage.BlobInfo
status @org.checkerframework.checker.nullness.qual.NonNull com.google.cloud.storage.transfermanager.TransferStatus
Returns
Type Description
DownloadResult.Builder

Methods

equals(Object o)

public boolean equals(Object o)
Parameter
Name Description
o Object
Returns
Type Description
boolean
Overrides

getException()

public @NonNull Exception getException()

The exception produced by a failed download operation. This field will only be populated if the Transfer was not successful or skipped See Also: Builder#setException(Exception)

Returns
Type Description
@org.checkerframework.checker.nullness.qual.NonNull java.lang.Exception

getInput()

public @NonNull BlobInfo getInput()

The BlobInfo for the object requested for download. See Also: Builder#setInput(BlobInfo)

Returns
Type Description
@org.checkerframework.checker.nullness.qual.NonNull com.google.cloud.storage.BlobInfo

getOutputDestination()

public @NonNull Path getOutputDestination()

The destination on the Filesystem the object has been written to. This field will only be populated if the Transfer was a SUCCESS. See Also: Builder#setOutputDestination(Path)

Returns
Type Description
@org.checkerframework.checker.nullness.qual.NonNull java.nio.file.Path

getStatus()

public @NonNull TransferStatus getStatus()

The status of the download operation. See Also: Builder#setStatus(TransferStatus), TransferStatus

Returns
Type Description
@org.checkerframework.checker.nullness.qual.NonNull com.google.cloud.storage.transfermanager.TransferStatus

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

toString()

public String toString()
Returns
Type Description
String
Overrides