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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static IncludeGrantedScopesvalueOf(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- 
USERpublic static final IncludeGrantedScopes USER Use it in user flow.
 - 
TEAMpublic static final IncludeGrantedScopes TEAM Use it in team flow.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<IncludeGrantedScopes>
 
 
- 
 
-