public static enum IntentStarters.StarterFlags extends java.lang.Enum<IntentStarters.StarterFlags>
| Enum Constant and Description |
|---|
CALL_ON_ACTIVITY_RESULT
Call the function onActivityResult of the calling Activity.
|
CONTEXT_FREE
For internal use only.
|
QUENCH_PERMISSIONS
The intent is started using other permissions as the caller has.
|
| Modifier and Type | Method and Description |
|---|---|
static IntentStarters.StarterFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntentStarters.StarterFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntentStarters.StarterFlags CALL_ON_ACTIVITY_RESULT
public static final IntentStarters.StarterFlags QUENCH_PERMISSIONS
This is used with startIntentSender
public static final IntentStarters.StarterFlags CONTEXT_FREE
Used during the "boot process" and when installing the context free overrides.
public static IntentStarters.StarterFlags[] values()
for (IntentStarters.StarterFlags c : IntentStarters.StarterFlags.values()) System.out.println(c);
public static IntentStarters.StarterFlags valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null