Enum Enums.SignInType
- java.lang.Object
-
- java.lang.Enum<Enums.SignInType>
-
- com.blackberry.workspaces.api.sdk.Enums.SignInType
-
- All Implemented Interfaces:
Serializable
,Comparable<Enums.SignInType>
- Enclosing class:
- Enums
public static enum Enums.SignInType extends Enum<Enums.SignInType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Mixed
MixedUsingDeviceID
Using DeviceIDUsingEmailOverOAuth
Using email over OAuthUsingInga
Using IngaUsingOAuth
Using OAuthUsingPassword
Using passwordUsingServiceAccount
Using Sercice Account
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getSignInTypeFlagValue()
static Enums.SignInType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.SignInType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UsingDeviceID
public static final Enums.SignInType UsingDeviceID
Using DeviceID
-
UsingPassword
public static final Enums.SignInType UsingPassword
Using password
-
UsingOAuth
public static final Enums.SignInType UsingOAuth
Using OAuth
-
Mixed
public static final Enums.SignInType Mixed
Mixed
-
UsingEmailOverOAuth
public static final Enums.SignInType UsingEmailOverOAuth
Using email over OAuth
-
UsingInga
public static final Enums.SignInType UsingInga
Using Inga
-
UsingServiceAccount
public static final Enums.SignInType UsingServiceAccount
Using Sercice Account
-
-
Method Detail
-
values
public static Enums.SignInType[] 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 (Enums.SignInType c : Enums.SignInType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enums.SignInType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getSignInTypeFlagValue
public long getSignInTypeFlagValue()
-
-