public static enum Handler.State extends Enum<Handler.State>
| Enum Constant and Description |
|---|
INIT_IN_PROGRESS |
INITED |
NOT_INITED |
SHUTDOWN_IN_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static Handler.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Handler.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Handler.State NOT_INITED
public static final Handler.State INIT_IN_PROGRESS
public static final Handler.State INITED
public static final Handler.State SHUTDOWN_IN_PROGRESS
public static Handler.State[] values()
for (Handler.State c : Handler.State.values()) System.out.println(c);
public static Handler.State 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 © 2005–2025 Onix Solutions. All rights reserved.