public final class DeleteBatchJobStatus extends Object
isAbc()
methods will return true
. You can use tag()
to determine the
tag associated with this instance.
Open unions may be extended in the future with additional tags. If a new
tag is introduced that this SDK does not recognized, the OTHER
value
will be used.
Modifier and Type | Class and Description |
---|---|
static class |
DeleteBatchJobStatus.Tag
Discriminating tag type for
DeleteBatchJobStatus . |
Modifier and Type | Field and Description |
---|---|
static DeleteBatchJobStatus |
IN_PROGRESS
The asynchronous job is still in progress.
|
static DeleteBatchJobStatus |
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
Modifier and Type | Method and Description |
---|---|
static DeleteBatchJobStatus |
complete(DeleteBatchResult value)
Returns an instance of
DeleteBatchJobStatus that has its tag set
to DeleteBatchJobStatus.Tag.COMPLETE . |
boolean |
equals(Object obj) |
static DeleteBatchJobStatus |
failed(DeleteBatchError value)
Returns an instance of
DeleteBatchJobStatus that has its tag set
to DeleteBatchJobStatus.Tag.FAILED . |
DeleteBatchResult |
getCompleteValue()
The batch delete has finished.
|
DeleteBatchError |
getFailedValue()
The batch delete has failed.
|
int |
hashCode() |
boolean |
isComplete()
|
boolean |
isFailed()
|
boolean |
isInProgress()
|
boolean |
isOther()
|
DeleteBatchJobStatus.Tag |
tag()
Returns the tag for this instance.
|
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
public static final DeleteBatchJobStatus IN_PROGRESS
public static final DeleteBatchJobStatus OTHER
Receiving a catch-all value typically indicates this SDK version is not up to date. Consider updating your SDK version to handle the new tags.
public DeleteBatchJobStatus.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 DeleteBatchJobStatus
.
If a tag returned by the server is unrecognized by this SDK, the
DeleteBatchJobStatus.Tag.OTHER
value will be used.
public boolean isInProgress()
true
if this instance is tagged as DeleteBatchJobStatus.Tag.IN_PROGRESS
, false
otherwise.public boolean isComplete()
true
if this instance is tagged as DeleteBatchJobStatus.Tag.COMPLETE
,
false
otherwise.public static DeleteBatchJobStatus complete(DeleteBatchResult value)
DeleteBatchJobStatus
that has its tag set
to DeleteBatchJobStatus.Tag.COMPLETE
.
The batch delete has finished.
value
- value to assign to this instance.DeleteBatchJobStatus
with its tag set to
DeleteBatchJobStatus.Tag.COMPLETE
.IllegalArgumentException
- if value
is null
.public DeleteBatchResult getCompleteValue()
This instance must be tagged as DeleteBatchJobStatus.Tag.COMPLETE
.
DeleteBatchResult
value associated with this instance
if isComplete()
is true
.IllegalStateException
- If isComplete()
is false
.public boolean isFailed()
true
if this instance is tagged as DeleteBatchJobStatus.Tag.FAILED
,
false
otherwise.public static DeleteBatchJobStatus failed(DeleteBatchError value)
DeleteBatchJobStatus
that has its tag set
to DeleteBatchJobStatus.Tag.FAILED
.
The batch delete has failed.
value
- value to assign to this instance.DeleteBatchJobStatus
with its tag set to
DeleteBatchJobStatus.Tag.FAILED
.IllegalArgumentException
- if value
is null
.public DeleteBatchError getFailedValue()
This instance must be tagged as DeleteBatchJobStatus.Tag.FAILED
.
DeleteBatchError
value associated with this instance
if isFailed()
is true
.IllegalStateException
- If isFailed()
is false
.public boolean isOther()
true
if this instance is tagged as DeleteBatchJobStatus.Tag.OTHER
,
false
otherwise.public String toStringMultiline()
The returned String may contain newlines.