Package com.sforce.soap.metadata
Enum ConnectedAppOauthAccessScope
- java.lang.Object
-
- java.lang.Enum<ConnectedAppOauthAccessScope>
-
- com.sforce.soap.metadata.ConnectedAppOauthAccessScope
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConnectedAppOauthAccessScope>
public enum ConnectedAppOauthAccessScope extends java.lang.Enum<ConnectedAppOauthAccessScope>
This is a generated class for the SObject Enterprise API. Do not edit this file, as your changes will be lost.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AddressEnumeration : AddressApiEnumeration : ApiBasicEnumeration : BasicChatterEnumeration : ChatterCustomApplicationsEnumeration : CustomApplicationsCustomPermissionsEnumeration : CustomPermissionsEclairEnumeration : EclairEmailEnumeration : EmailFullEnumeration : FullOfflineAccessEnumeration : OfflineAccessOpenIDEnumeration : OpenIDPhoneEnumeration : PhoneProfileEnumeration : ProfileRefreshTokenEnumeration : RefreshTokenWaveEnumeration : WaveWebEnumeration : Web
-
Field Summary
Fields Modifier and Type Field Description static java.util.Map<java.lang.String,java.lang.String>valuesToEnums
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static ConnectedAppOauthAccessScopevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConnectedAppOauthAccessScope[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Basic
public static final ConnectedAppOauthAccessScope Basic
Enumeration : Basic
-
Api
public static final ConnectedAppOauthAccessScope Api
Enumeration : Api
-
Web
public static final ConnectedAppOauthAccessScope Web
Enumeration : Web
-
Full
public static final ConnectedAppOauthAccessScope Full
Enumeration : Full
-
Chatter
public static final ConnectedAppOauthAccessScope Chatter
Enumeration : Chatter
-
CustomApplications
public static final ConnectedAppOauthAccessScope CustomApplications
Enumeration : CustomApplications
-
RefreshToken
public static final ConnectedAppOauthAccessScope RefreshToken
Enumeration : RefreshToken
-
OpenID
public static final ConnectedAppOauthAccessScope OpenID
Enumeration : OpenID
-
Profile
public static final ConnectedAppOauthAccessScope Profile
Enumeration : Profile
-
Email
public static final ConnectedAppOauthAccessScope Email
Enumeration : Email
-
Address
public static final ConnectedAppOauthAccessScope Address
Enumeration : Address
-
Phone
public static final ConnectedAppOauthAccessScope Phone
Enumeration : Phone
-
OfflineAccess
public static final ConnectedAppOauthAccessScope OfflineAccess
Enumeration : OfflineAccess
-
CustomPermissions
public static final ConnectedAppOauthAccessScope CustomPermissions
Enumeration : CustomPermissions
-
Wave
public static final ConnectedAppOauthAccessScope Wave
Enumeration : Wave
-
Eclair
public static final ConnectedAppOauthAccessScope Eclair
Enumeration : Eclair
-
-
Method Detail
-
values
public static ConnectedAppOauthAccessScope[] 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 (ConnectedAppOauthAccessScope c : ConnectedAppOauthAccessScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectedAppOauthAccessScope 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:
toStringin classjava.lang.Enum<ConnectedAppOauthAccessScope>
-
-