|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SyncPointBuffer.SP>
edu.rice.cs.cunit.SyncPointBuffer.SP
public static enum SyncPointBuffer.SP
Enumeration of sync point codes.
| Enum Constant Summary | |
|---|---|
END
Code for the end of the trace. |
|
LAST_VALID_CODE
Last code used. |
|
MONITORENTER
Code for entering a synchronized block. |
|
MONITOREXIT
Code for leaving a synchronized block. |
|
OBJID_MONITORENTER
Code for entering a synchronized block to assign an object ID. |
|
OBJID_MONITOREXIT
Code for leaving a synchronized block to assign an object ID. |
|
OBJID_TRYMONITORENTER
Code for trying to enter a synchronized block to assign an object ID. |
|
THREADEXIT
Code for the end of a thread. |
|
THREADID_MONITORENTER
Code for entering a synchronized block to assign a thread ID. |
|
THREADID_MONITOREXIT
Code for leaving a synchronized block to assign a thread ID. |
|
THREADID_TRYMONITORENTER
Code for trying to enter a synchronized block to assign a thread ID. |
|
THREADSTART
Code for the start of a thread. |
|
TRYMONITORENTER
Code for trying to enter a synchronized block. |
|
| Field Summary | |
|---|---|
private int |
_value
Integer value of the enum. |
| Method Summary | |
|---|---|
int |
intValue()
Return the integer value of the enum. |
static SyncPointBuffer.SP |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SyncPointBuffer.SP[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SyncPointBuffer.SP MONITORENTER
public static final SyncPointBuffer.SP MONITOREXIT
public static final SyncPointBuffer.SP TRYMONITORENTER
public static final SyncPointBuffer.SP THREADSTART
public static final SyncPointBuffer.SP THREADEXIT
public static final SyncPointBuffer.SP OBJID_MONITORENTER
public static final SyncPointBuffer.SP OBJID_MONITOREXIT
public static final SyncPointBuffer.SP OBJID_TRYMONITORENTER
public static final SyncPointBuffer.SP THREADID_MONITORENTER
public static final SyncPointBuffer.SP THREADID_MONITOREXIT
public static final SyncPointBuffer.SP THREADID_TRYMONITORENTER
public static final SyncPointBuffer.SP END
public static final SyncPointBuffer.SP LAST_VALID_CODE
| Field Detail |
|---|
private int _value
| Method Detail |
|---|
public static SyncPointBuffer.SP[] values()
for (SyncPointBuffer.SP c : SyncPointBuffer.SP.values()) System.out.println(c);
public static SyncPointBuffer.SP 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 name
java.lang.NullPointerException - if the argument is nullpublic int intValue()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||