Package com.dropbox.core
Enum IncludeGrantedScopes
- java.lang.Object
-
- java.lang.Enum<IncludeGrantedScopes>
-
- com.dropbox.core.IncludeGrantedScopes
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IncludeGrantedScopes>
public enum IncludeGrantedScopes extends java.lang.Enum<IncludeGrantedScopes>
If this field is present, Dropbox server will return a token with all scopes user previously granted your app. Non-mobile apps use it inDbxWebAuth
. Mobile apps use it inAuth
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static IncludeGrantedScopes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IncludeGrantedScopes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER
public static final IncludeGrantedScopes USER
Use it in user flow.
-
TEAM
public static final IncludeGrantedScopes TEAM
Use it in team flow.
-
-
Method Detail
-
values
public static IncludeGrantedScopes[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IncludeGrantedScopes c : IncludeGrantedScopes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IncludeGrantedScopes valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<IncludeGrantedScopes>
-
-