public static enum Intent.IntentType extends Enum<Intent.IntentType>
Enum Constant and Description |
---|
BROADCAST
So External and maybe internal
|
EXTERNAL_TARGET
The Class the Intent Action refers to belongs to an external App
|
IGNORE
Do not handle intent
|
INTERNAL_TARGET
The Class the Intent Action refers to belongs to this App
|
STANDARD_ACTION
The Action is a Constant defined on the Android-Reference Manual
|
SYSTEM_SERVICE |
UNKNOWN_TARGET
The target could not be Identified for sure
|
Modifier and Type | Method and Description |
---|---|
static Intent.IntentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Intent.IntentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Intent.IntentType UNKNOWN_TARGET
public static final Intent.IntentType INTERNAL_TARGET
public static final Intent.IntentType EXTERNAL_TARGET
public static final Intent.IntentType STANDARD_ACTION
public static final Intent.IntentType SYSTEM_SERVICE
public static final Intent.IntentType BROADCAST
public static final Intent.IntentType IGNORE
public static Intent.IntentType[] values()
for (Intent.IntentType c : Intent.IntentType.values()) System.out.println(c);
public static Intent.IntentType 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