public final class MemberSelector extends Object
This class is an open tagged union. Tagged unions instances are always
associated to a specific tag. This means only one of the 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 |
MemberSelector.Tag
Discriminating tag type for
MemberSelector . |
Modifier and Type | Field and Description |
---|---|
static MemberSelector |
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
Modifier and Type | Method and Description |
---|---|
static MemberSelector |
dropboxId(String value)
Returns an instance of
MemberSelector that has its tag set to
MemberSelector.Tag.DROPBOX_ID . |
static MemberSelector |
email(String value)
Returns an instance of
MemberSelector that has its tag set to
MemberSelector.Tag.EMAIL . |
boolean |
equals(Object obj) |
String |
getDropboxIdValue()
Dropbox account, team member, or group ID of member.
|
String |
getEmailValue()
E-mail address of member.
|
int |
hashCode() |
boolean |
isDropboxId()
|
boolean |
isEmail()
|
boolean |
isOther()
|
MemberSelector.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 MemberSelector 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 MemberSelector.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 MemberSelector
.
If a tag returned by the server is unrecognized by this SDK, the
MemberSelector.Tag.OTHER
value will be used.
public boolean isDropboxId()
true
if this instance is tagged as MemberSelector.Tag.DROPBOX_ID
, false
otherwise.public static MemberSelector dropboxId(String value)
MemberSelector
that has its tag set to
MemberSelector.Tag.DROPBOX_ID
.
Dropbox account, team member, or group ID of member.
value
- value to assign to this instance.MemberSelector
with its tag set to MemberSelector.Tag.DROPBOX_ID
.IllegalArgumentException
- if value
is shorter than 1 or
is null
.public String getDropboxIdValue()
This instance must be tagged as MemberSelector.Tag.DROPBOX_ID
.
String
value associated with this instance if isDropboxId()
is true
.IllegalStateException
- If isDropboxId()
is false
.public boolean isEmail()
true
if this instance is tagged as MemberSelector.Tag.EMAIL
,
false
otherwise.public static MemberSelector email(String value)
MemberSelector
that has its tag set to
MemberSelector.Tag.EMAIL
.
E-mail address of member.
value
- value to assign to this instance.MemberSelector
with its tag set to MemberSelector.Tag.EMAIL
.IllegalArgumentException
- if value
is longer than 255,
does not match pattern "^['&A-Za-z0-9._%+-]+@[A-Za-z0-9-][A-Za-z0-9.-]*.[A-Za-z]{2,15}$
",
or is null
.public String getEmailValue()
This instance must be tagged as MemberSelector.Tag.EMAIL
.
String
value associated with this instance if isEmail()
is true
.IllegalStateException
- If isEmail()
is false
.public boolean isOther()
true
if this instance is tagged as MemberSelector.Tag.OTHER
,
false
otherwise.public String toStringMultiline()
The returned String may contain newlines.