|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Drop.Kind>
org.opensolaris.os.dtrace.Drop.Kind
public static enum Drop.Kind
Indicates what kind of buffer space experienced the data drop (such as principal buffer or aggregation buffer) and possibly a reason.
Enum Constant Summary | |
---|---|
AGGREGATION
Drop to aggregation buffer |
|
DBLERROR
Error in ERROR probe |
|
DYNAMIC
Dynamic drop |
|
DYNDIRTY
Dynamic drop due to dirtiness |
|
DYNRINSE
Dynamic drop due to rinsing |
|
PRINCIPAL
Drop to principal buffer |
|
SPEC
Speculative drop |
|
SPECBUSY
Speculative drop due to business |
|
SPECUNAVAIL
Speculative drop due to unavailability |
|
STKSTROVERFLOW
Stack string table overflow |
|
UNKNOWN
Unrecognized value from native DTrace library |
Method Summary | |
---|---|
java.lang.String |
toString()
Overridden to get the default display value. |
static Drop.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Drop.Kind[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Drop.Kind PRINCIPAL
public static final Drop.Kind AGGREGATION
public static final Drop.Kind DYNAMIC
public static final Drop.Kind DYNRINSE
public static final Drop.Kind DYNDIRTY
public static final Drop.Kind SPEC
public static final Drop.Kind SPECBUSY
public static final Drop.Kind SPECUNAVAIL
public static final Drop.Kind STKSTROVERFLOW
public static final Drop.Kind DBLERROR
public static final Drop.Kind UNKNOWN
Method Detail |
---|
public static Drop.Kind[] values()
for (Drop.Kind c : Drop.Kind.values()) System.out.println(c);
public static Drop.Kind 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 java.lang.String toString()
Enum.name()
instead as an I18N lookup key.
toString
in class java.lang.Enum<Drop.Kind>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |