public final class SaveUrlJobStatus
extends java.lang.Object
isAbc() methods will
return true. You can use tag() to determine the tag
associated with this instance.| Modifier and Type | Class and Description |
|---|---|
static class |
SaveUrlJobStatus.Tag
Discriminating tag type for
SaveUrlJobStatus. |
| Modifier and Type | Field and Description |
|---|---|
static SaveUrlJobStatus |
IN_PROGRESS
The asynchronous job is still in progress.
|
| Modifier and Type | Method and Description |
|---|---|
static SaveUrlJobStatus |
complete(FileMetadata value)
Returns an instance of
SaveUrlJobStatus that has its tag set to
SaveUrlJobStatus.Tag.COMPLETE. |
boolean |
equals(java.lang.Object obj) |
static SaveUrlJobStatus |
failed(SaveUrlError value)
Returns an instance of
SaveUrlJobStatus that has its tag set to
SaveUrlJobStatus.Tag.FAILED. |
FileMetadata |
getCompleteValue()
Metadata of the file where the URL is saved to.
|
SaveUrlError |
getFailedValue()
This instance must be tagged as
SaveUrlJobStatus.Tag.FAILED. |
int |
hashCode() |
boolean |
isComplete()
|
boolean |
isFailed()
|
boolean |
isInProgress()
|
SaveUrlJobStatus.Tag |
tag()
Returns the tag for this instance.
|
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
public static final SaveUrlJobStatus IN_PROGRESS
public SaveUrlJobStatus.Tag tag()
This class is a tagged union. Tagged unions instances are always
associated to a specific tag. This means only one of the isXyz()
methods will return true. Callers are recommended to use the tag
value in a switch statement to properly handle the different
values for this SaveUrlJobStatus.
public boolean isInProgress()
true if this instance is tagged as SaveUrlJobStatus.Tag.IN_PROGRESS, false otherwise.public boolean isComplete()
true if this instance is tagged as SaveUrlJobStatus.Tag.COMPLETE,
false otherwise.public static SaveUrlJobStatus complete(FileMetadata value)
SaveUrlJobStatus that has its tag set to
SaveUrlJobStatus.Tag.COMPLETE.
Metadata of the file where the URL is saved to.
value - value to assign to this instance.SaveUrlJobStatus with its tag set to SaveUrlJobStatus.Tag.COMPLETE.java.lang.IllegalArgumentException - if value is null.public FileMetadata getCompleteValue()
This instance must be tagged as SaveUrlJobStatus.Tag.COMPLETE.
FileMetadata value associated with this instance if
isComplete() is true.java.lang.IllegalStateException - If isComplete() is false.public boolean isFailed()
true if this instance is tagged as SaveUrlJobStatus.Tag.FAILED,
false otherwise.public static SaveUrlJobStatus failed(SaveUrlError value)
value - value to assign to this instance.SaveUrlJobStatus with its tag set to SaveUrlJobStatus.Tag.FAILED.java.lang.IllegalArgumentException - if value is null.public SaveUrlError getFailedValue()
SaveUrlJobStatus.Tag.FAILED.SaveUrlError value associated with this instance if
isFailed() is true.java.lang.IllegalStateException - If isFailed() is false.public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String toStringMultiline()
The returned String may contain newlines.