public static enum IntentStarters.StarterFlags extends 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(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
public static final IntentStarters.StarterFlags CONTEXT_FREE
public static IntentStarters.StarterFlags[] values()
for (IntentStarters.StarterFlags c : IntentStarters.StarterFlags.values()) System.out.println(c);
public static IntentStarters.StarterFlags 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