public static enum Application.Component.LifecycleState extends Enum<Application.Component.LifecycleState>
| Modifier and Type | Method and Description |
|---|---|
static Application.Component.LifecycleState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Application.Component.LifecycleState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.Component.LifecycleState NEW
public static final Application.Component.LifecycleState ACTIVE
public static final Application.Component.LifecycleState STOPPED
public static Application.Component.LifecycleState[] values()
for (Application.Component.LifecycleState c : Application.Component.LifecycleState.values()) System.out.println(c);
public static Application.Component.LifecycleState 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 nullCopyright © 2022. All rights reserved.