|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<MlpErr>
com.jrockit.memleak.mlp.MlpErr
public enum MlpErr
Error codes for MLP.
Enum Constant Summary | |
---|---|
END_OF_PACKET
Server expected more data but the packet ended. |
|
GENERIC
This is what older servers sent. |
|
ID_DISCARDED
There is a weak handle, but it's been cleared. |
|
ID_NOT_ARRAY
Used for both array classes and instances. |
|
ID_NOT_CLASS
|
|
ID_UNUSED
Unused or invalid ID, but invalid IDs may not be reported. |
|
INDEX_OUT_OF_BOUNDS
Typically for array access |
|
NO_INPUT
When a request takes a variable number of objects/classes, none was provided. |
|
NONE
|
|
OPERATION_FAILED
The actual operation failed. |
|
OUT_OF_MEMORY
|
|
PROCESSING_FAILED
Some processing of the input failed. |
|
REQ_UNSUPPORTED
|
|
TIMED_OUT
No result could be found within the given time. |
|
TOO_COMPLEX
No result could be found within given complexity limits. |
Method Summary | |
---|---|
static MlpErr |
get(int errCode)
|
static MlpErr |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static MlpErr[] |
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 MlpErr NONE
public static final MlpErr GENERIC
public static final MlpErr OUT_OF_MEMORY
public static final MlpErr REQ_UNSUPPORTED
public static final MlpErr END_OF_PACKET
public static final MlpErr NO_INPUT
public static final MlpErr ID_UNUSED
public static final MlpErr ID_DISCARDED
public static final MlpErr ID_NOT_CLASS
public static final MlpErr ID_NOT_ARRAY
public static final MlpErr INDEX_OUT_OF_BOUNDS
public static final MlpErr PROCESSING_FAILED
public static final MlpErr OPERATION_FAILED
public static final MlpErr TIMED_OUT
public static final MlpErr TOO_COMPLEX
Method Detail |
---|
public static MlpErr[] values()
for (MlpErr c : MlpErr.values()) System.out.println(c);
public static MlpErr 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 static MlpErr get(int errCode)
errCode
-
MlpErr
with the given ordinal, or GENERIC
.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |