public static enum EntryPoint.Type extends java.lang.Enum<EntryPoint.Type>
| Enum Constant and Description |
|---|
ACTIVITY |
BROADCAST_RECEIVER |
CONTENT_PROVIDER |
SERVICE |
| Modifier and Type | Method and Description |
|---|---|
static EntryPoint.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntryPoint.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryPoint.Type ACTIVITY
public static final EntryPoint.Type SERVICE
public static final EntryPoint.Type BROADCAST_RECEIVER
public static final EntryPoint.Type CONTENT_PROVIDER
public static EntryPoint.Type[] values()
for (EntryPoint.Type c : EntryPoint.Type.values()) System.out.println(c);
public static EntryPoint.Type 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