@Deprecated public static enum ProfileConfig.INTENT_DELIVERY extends Enum<ProfileConfig.INTENT_DELIVERY>
Example Usage: INTENT_DELIVERY.SEND_VIA_STARTACTIVITY;
Enum Constant and Description |
---|
BROADCAST_INTENT
Deprecated.
Send output via Broadcast intent.
|
DEFAULT
Deprecated.
Default intent delivery type configured on the device
|
SEND_VIA_STARTACTIVITY
Deprecated.
Send output via StartActivity.
|
SEND_VIA_STARTSERVICE
Deprecated.
Send output via startService.
|
Modifier and Type | Method and Description |
---|---|
static ProfileConfig.INTENT_DELIVERY |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ProfileConfig.INTENT_DELIVERY[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileConfig.INTENT_DELIVERY DEFAULT
public static final ProfileConfig.INTENT_DELIVERY SEND_VIA_STARTACTIVITY
public static final ProfileConfig.INTENT_DELIVERY SEND_VIA_STARTSERVICE
public static final ProfileConfig.INTENT_DELIVERY BROADCAST_INTENT
public static ProfileConfig.INTENT_DELIVERY[] values()
for (ProfileConfig.INTENT_DELIVERY c : ProfileConfig.INTENT_DELIVERY.values()) System.out.println(c);
public static ProfileConfig.INTENT_DELIVERY 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 null