public enum SalesforceOAuthDisplay extends Enum<SalesforceOAuthDisplay>
Enum Constant and Description |
---|
PAGE
Full-page authorization screen (default)
|
POPUP
Compact dialog optimized for modern web browser popup windows.
|
TOUCH
Mobile-optimized dialog designed for modern smartphones, such as Android and iPhone.
|
Modifier and Type | Method and Description |
---|---|
static SalesforceOAuthDisplay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SalesforceOAuthDisplay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SalesforceOAuthDisplay PAGE
public static final SalesforceOAuthDisplay POPUP
public static final SalesforceOAuthDisplay TOUCH
public static SalesforceOAuthDisplay[] values()
for (SalesforceOAuthDisplay c : SalesforceOAuthDisplay.values()) System.out.println(c);
public static SalesforceOAuthDisplay valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010–2020. All rights reserved.