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