public final class SaveCopyReferenceError 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 |
SaveCopyReferenceError.Tag
Discriminating tag type for
SaveCopyReferenceError . |
Modifier and Type | Field and Description |
---|---|
static SaveCopyReferenceError |
INVALID_COPY_REFERENCE
The copy reference is invalid.
|
static SaveCopyReferenceError |
NO_PERMISSION
You don't have permission to save the given copy reference.
|
static SaveCopyReferenceError |
NOT_FOUND
The file referenced by the copy reference cannot be found.
|
static SaveCopyReferenceError |
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
static SaveCopyReferenceError |
TOO_MANY_FILES
The operation would involve more than 10,000 files and folders.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
WriteError |
getPathValue()
This instance must be tagged as
SaveCopyReferenceError.Tag.PATH . |
int |
hashCode() |
boolean |
isInvalidCopyReference()
Returns
true if this instance has the tag SaveCopyReferenceError.Tag.INVALID_COPY_REFERENCE , false otherwise. |
boolean |
isNoPermission()
Returns
true if this instance has the tag SaveCopyReferenceError.Tag.NO_PERMISSION , false otherwise. |
boolean |
isNotFound()
|
boolean |
isOther()
|
boolean |
isPath()
|
boolean |
isTooManyFiles()
Returns
true if this instance has the tag SaveCopyReferenceError.Tag.TOO_MANY_FILES , false otherwise. |
static SaveCopyReferenceError |
path(WriteError value)
Returns an instance of
SaveCopyReferenceError that has its tag
set to SaveCopyReferenceError.Tag.PATH . |
SaveCopyReferenceError.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 SaveCopyReferenceError INVALID_COPY_REFERENCE
public static final SaveCopyReferenceError NO_PERMISSION
public static final SaveCopyReferenceError NOT_FOUND
public static final SaveCopyReferenceError TOO_MANY_FILES
public static final SaveCopyReferenceError 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 SaveCopyReferenceError.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 SaveCopyReferenceError
.
If a tag returned by the server is unrecognized by this SDK, the
SaveCopyReferenceError.Tag.OTHER
value will be used.
public boolean isPath()
true
if this instance is tagged as SaveCopyReferenceError.Tag.PATH
,
false
otherwise.public static SaveCopyReferenceError path(WriteError value)
SaveCopyReferenceError
that has its tag
set to SaveCopyReferenceError.Tag.PATH
.
None
value
- value to assign to this instance.SaveCopyReferenceError
with its tag set to
SaveCopyReferenceError.Tag.PATH
.IllegalArgumentException
- if value
is null
.public WriteError getPathValue()
SaveCopyReferenceError.Tag.PATH
.WriteError
value associated with this instance if
isPath()
is true
.IllegalStateException
- If isPath()
is false
.public boolean isInvalidCopyReference()
true
if this instance has the tag SaveCopyReferenceError.Tag.INVALID_COPY_REFERENCE
, false
otherwise.true
if this instance is tagged as SaveCopyReferenceError.Tag.INVALID_COPY_REFERENCE
, false
otherwise.public boolean isNoPermission()
true
if this instance has the tag SaveCopyReferenceError.Tag.NO_PERMISSION
, false
otherwise.true
if this instance is tagged as SaveCopyReferenceError.Tag.NO_PERMISSION
, false
otherwise.public boolean isNotFound()
true
if this instance is tagged as SaveCopyReferenceError.Tag.NOT_FOUND
,
false
otherwise.public boolean isTooManyFiles()
true
if this instance has the tag SaveCopyReferenceError.Tag.TOO_MANY_FILES
, false
otherwise.true
if this instance is tagged as SaveCopyReferenceError.Tag.TOO_MANY_FILES
, false
otherwise.public boolean isOther()
true
if this instance is tagged as SaveCopyReferenceError.Tag.OTHER
,
false
otherwise.public String toStringMultiline()
The returned String may contain newlines.