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