public enum MemberSpaceLimitType extends java.lang.Enum<MemberSpaceLimitType>
| Modifier and Type | Class and Description |
|---|---|
static class |
MemberSpaceLimitType.Serializer
For internal use only.
|
| Enum Constant and Description |
|---|
ALERT_ONLY
The team member has soft imposed space limit - the limit is used for
display and for notifications.
|
OFF
The team member does not have imposed space limit.
|
OTHER
Catch-all used for unknown tag values returned by the Dropbox servers.
|
STOP_SYNC
The team member has hard imposed space limit - Dropbox file sync will
stop after the limit is reached.
|
| Modifier and Type | Method and Description |
|---|---|
static MemberSpaceLimitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MemberSpaceLimitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MemberSpaceLimitType OFF
public static final MemberSpaceLimitType ALERT_ONLY
public static final MemberSpaceLimitType STOP_SYNC
public static final MemberSpaceLimitType 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 static MemberSpaceLimitType[] values()
for (MemberSpaceLimitType c : MemberSpaceLimitType.values()) System.out.println(c);
public static MemberSpaceLimitType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null