public static enum LibData.Error extends java.lang.Enum<LibData.Error>
Enum Constant and Description |
---|
INTERNAL_SYSTEM_ERROR |
INVALID_ATTRTYPE |
INVALID_NAME |
INVALID_OBJECTTYPE |
INVALID_VALUE |
MAX_ERROR |
NO_ERROR |
OBJECT_ALREADY_EXISTS |
OBJECT_NOT_FOUND |
PIINIT_NOT_CALLED |
REFERENCE_ERROR |
SEMANTIC_ERROR |
SYNTAX_ERROR |
TRACE_FILES_CANNOT_BE_OPENED |
UNUSABLE_OID |
Modifier and Type | Method and Description |
---|---|
static LibData.Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LibData.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LibData.Error NO_ERROR
public static final LibData.Error INTERNAL_SYSTEM_ERROR
public static final LibData.Error INVALID_VALUE
public static final LibData.Error INVALID_NAME
public static final LibData.Error INVALID_OBJECTTYPE
public static final LibData.Error INVALID_ATTRTYPE
public static final LibData.Error UNUSABLE_OID
public static final LibData.Error OBJECT_ALREADY_EXISTS
public static final LibData.Error OBJECT_NOT_FOUND
public static final LibData.Error SYNTAX_ERROR
public static final LibData.Error TRACE_FILES_CANNOT_BE_OPENED
public static final LibData.Error PIINIT_NOT_CALLED
public static final LibData.Error SEMANTIC_ERROR
public static final LibData.Error REFERENCE_ERROR
public static final LibData.Error MAX_ERROR
public static LibData.Error[] values()
for (LibData.Error c : LibData.Error.values()) System.out.println(c);
public static LibData.Error 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 null