|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ExceptionId>
uk.org.blankaspect.nlf.ExceptionId
public enum ExceptionId
This enumeration contains identifiers for the Nested List File exceptions NlfException
and NlfUncheckedException
. Each identifier maps to a
message.
Method Summary | |
---|---|
java.lang.String |
getMessage()
Returns the message that the exception identifier maps to. |
static ExceptionId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ExceptionId[] |
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 ExceptionId FAILED_TO_OPEN_FILE
public static final ExceptionId FAILED_TO_CLOSE_FILE
public static final ExceptionId FAILED_TO_LOCK_FILE
public static final ExceptionId ERROR_READING_FILE
public static final ExceptionId ERROR_WRITING_FILE
public static final ExceptionId FILE_ACCESS_NOT_PERMITTED
public static final ExceptionId FAILED_TO_CREATE_TEMPORARY_FILE
public static final ExceptionId FAILED_TO_DELETE_FILE
public static final ExceptionId FAILED_TO_RENAME_FILE
public static final ExceptionId NOT_A_NESTED_LIST_FILE
public static final ExceptionId INVALID_VERSION_NUM
public static final ExceptionId UNSUPPORTED_VERSION
public static final ExceptionId NO_ROOT_LIST
public static final ExceptionId MALFORMED_FILE
public static final ExceptionId INVALID_CHUNK_ID
public static final ExceptionId CHUNK_SIZE_OUT_OF_BOUNDS
public static final ExceptionId INVALID_LIST_INSTANCE_ID
public static final ExceptionId INVALID_NAMESPACE_NAME
public static final ExceptionId MULTIPLE_ATTRIBUTES_CHUNKS
public static final ExceptionId MALFORMED_ATTRIBUTES_CHUNK
public static final ExceptionId INVALID_ATTRIBUTE_NAME
public static final ExceptionId INVALID_ATTRIBUTE_VALUE
public static final ExceptionId MULTIPLE_ATTRIBUTES
public static final ExceptionId FAILED_TO_CREATE_XML_DOCUMENT
public static final ExceptionId ERROR_GENERATING_XML_DOCUMENT
public static final ExceptionId OPERATION_TERMINATED
public static final ExceptionId NOT_ENOUGH_MEMORY
public static final ExceptionId UTF8_ENCODING_NOT_SUPPORTED
public static final ExceptionId RESERVED_IDENTIFIER
public static final ExceptionId FILE_IS_OPEN_ON_DOCUMENT
public static final ExceptionId DIFFERENT_DOCUMENTS
public static final ExceptionId ADDING_ANCESTOR_NOT_ALLOWED
public static final ExceptionId ERROR_ENCODING_CHUNK_DATA
Method Detail |
---|
public static ExceptionId[] values()
for (ExceptionId c : ExceptionId.values()) System.out.println(c);
public static ExceptionId 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 getMessage()
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |