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