net.ajaest.jdk.core.main
Enum ExceptionHandler.KNOWN_EXCEPTIONS

java.lang.Object
  extended by java.lang.Enum<ExceptionHandler.KNOWN_EXCEPTIONS>
      extended by net.ajaest.jdk.core.main.ExceptionHandler.KNOWN_EXCEPTIONS
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExceptionHandler.KNOWN_EXCEPTIONS>
Enclosing class:
ExceptionHandler

public static enum ExceptionHandler.KNOWN_EXCEPTIONS
extends java.lang.Enum<ExceptionHandler.KNOWN_EXCEPTIONS>


Enum Constant Summary
CORRUPTED_TREE
           
EXPORT_IOEXCEPTION
           
GRAPH_CAST_EXCEPTION
           
INEXISTENT_QABOUT
           
INVALID_CONFIG_FILE_PATH
           
INVALID_KANJI_OR_STROKE_FILE_PATH
           
IS_NOT_HEX
           
KANJIDB_CORRUPTED
           
KANJIDB_IOEXCEPTION
           
LOOK_AND_FEEL_DOES_NOT_EXISTS
           
MALFORMED_CONFIG_FILE
           
MESSAGES_KEY_DOES_NOT_EXISTS
           
MESSAGES_LIST_DOES_NOT_EXISTS
           
MESSAGES_LIST_NULL
           
MESSAGES_MESSAGE_DOES_NOT_EXISTS
           
MESSAGES_NULL
           
NOT_A_KANJI
           
NUMBER_CAST_EXCEPTION
           
TREE_IOEXCEPTION
           
 
Method Summary
static ExceptionHandler.KNOWN_EXCEPTIONS valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExceptionHandler.KNOWN_EXCEPTIONS[] 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

LOOK_AND_FEEL_DOES_NOT_EXISTS

public static final ExceptionHandler.KNOWN_EXCEPTIONS LOOK_AND_FEEL_DOES_NOT_EXISTS

MESSAGES_NULL

public static final ExceptionHandler.KNOWN_EXCEPTIONS MESSAGES_NULL

MESSAGES_MESSAGE_DOES_NOT_EXISTS

public static final ExceptionHandler.KNOWN_EXCEPTIONS MESSAGES_MESSAGE_DOES_NOT_EXISTS

MESSAGES_KEY_DOES_NOT_EXISTS

public static final ExceptionHandler.KNOWN_EXCEPTIONS MESSAGES_KEY_DOES_NOT_EXISTS

MESSAGES_LIST_NULL

public static final ExceptionHandler.KNOWN_EXCEPTIONS MESSAGES_LIST_NULL

MESSAGES_LIST_DOES_NOT_EXISTS

public static final ExceptionHandler.KNOWN_EXCEPTIONS MESSAGES_LIST_DOES_NOT_EXISTS

INVALID_CONFIG_FILE_PATH

public static final ExceptionHandler.KNOWN_EXCEPTIONS INVALID_CONFIG_FILE_PATH

MALFORMED_CONFIG_FILE

public static final ExceptionHandler.KNOWN_EXCEPTIONS MALFORMED_CONFIG_FILE

INVALID_KANJI_OR_STROKE_FILE_PATH

public static final ExceptionHandler.KNOWN_EXCEPTIONS INVALID_KANJI_OR_STROKE_FILE_PATH

NUMBER_CAST_EXCEPTION

public static final ExceptionHandler.KNOWN_EXCEPTIONS NUMBER_CAST_EXCEPTION

GRAPH_CAST_EXCEPTION

public static final ExceptionHandler.KNOWN_EXCEPTIONS GRAPH_CAST_EXCEPTION

IS_NOT_HEX

public static final ExceptionHandler.KNOWN_EXCEPTIONS IS_NOT_HEX

NOT_A_KANJI

public static final ExceptionHandler.KNOWN_EXCEPTIONS NOT_A_KANJI

EXPORT_IOEXCEPTION

public static final ExceptionHandler.KNOWN_EXCEPTIONS EXPORT_IOEXCEPTION

TREE_IOEXCEPTION

public static final ExceptionHandler.KNOWN_EXCEPTIONS TREE_IOEXCEPTION

CORRUPTED_TREE

public static final ExceptionHandler.KNOWN_EXCEPTIONS CORRUPTED_TREE

KANJIDB_CORRUPTED

public static final ExceptionHandler.KNOWN_EXCEPTIONS KANJIDB_CORRUPTED

KANJIDB_IOEXCEPTION

public static final ExceptionHandler.KNOWN_EXCEPTIONS KANJIDB_IOEXCEPTION

INEXISTENT_QABOUT

public static final ExceptionHandler.KNOWN_EXCEPTIONS INEXISTENT_QABOUT
Method Detail

values

public static ExceptionHandler.KNOWN_EXCEPTIONS[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ExceptionHandler.KNOWN_EXCEPTIONS c : ExceptionHandler.KNOWN_EXCEPTIONS.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ExceptionHandler.KNOWN_EXCEPTIONS valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null