public static enum ThreadHistoryEvent.OPERATION extends java.lang.Enum<ThreadHistoryEvent.OPERATION>
| Enum Constant and Description |
|---|
CREATED
A thread has been created.
|
DELETED
A thread has been deleted.
|
| Modifier and Type | Method and Description |
|---|---|
static ThreadHistoryEvent.OPERATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThreadHistoryEvent.OPERATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThreadHistoryEvent.OPERATION CREATED
public static final ThreadHistoryEvent.OPERATION DELETED
public static ThreadHistoryEvent.OPERATION[] values()
for (ThreadHistoryEvent.OPERATION c : ThreadHistoryEvent.OPERATION.values()) System.out.println(c);
public static ThreadHistoryEvent.OPERATION valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2010-2020 anotheria.net. All Rights Reserved.