public enum ExceptionMessage extends Enum<ExceptionMessage>
| Modifier and Type | Method and Description |
|---|---|
String |
getMessage(Object... params) |
static ExceptionMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionMessage PATH_DOES_NOT_EXIST
public static final ExceptionMessage LOCK_ID_FOR_DIFFERENT_BLOCK
public static final ExceptionMessage LOCK_ID_FOR_DIFFERENT_SESSION
public static final ExceptionMessage LOCK_RECORD_NOT_FOUND_FOR_BLOCK_AND_SESSION
public static final ExceptionMessage LOCK_RECORD_NOT_FOUND_FOR_LOCK_ID
public static final ExceptionMessage BLOCK_META_NOT_FOUND
public static final ExceptionMessage GET_DIR_FROM_NON_SPECIFIC_LOCATION
public static final ExceptionMessage TEMP_BLOCK_META_NOT_FOUND
public static final ExceptionMessage TIER_ALIAS_NOT_FOUND
public static final ExceptionMessage TIER_VIEW_ALIAS_NOT_FOUND
public static final ExceptionMessage ADD_EXISTING_BLOCK
public static final ExceptionMessage BLOCK_NOT_FOUND_FOR_SESSION
public static final ExceptionMessage NO_SPACE_FOR_BLOCK_META
public static final ExceptionMessage BLOCK_ID_FOR_DIFFERENT_SESSION
public static final ExceptionMessage BLOCK_NOT_FOUND_AT_LOCATION
public static final ExceptionMessage MOVE_UNCOMMITTED_BLOCK
public static final ExceptionMessage NO_BLOCK_ID_FOUND
public static final ExceptionMessage NO_EVICTION_PLAN_TO_FREE_SPACE
public static final ExceptionMessage NO_SPACE_FOR_BLOCK_ALLOCATION
public static final ExceptionMessage NO_SPACE_FOR_BLOCK_MOVE
public static final ExceptionMessage REMOVE_UNCOMMITTED_BLOCK
public static final ExceptionMessage TEMP_BLOCK_ID_COMMITTED
public static final ExceptionMessage TEMP_BLOCK_ID_EXISTS
public static final ExceptionMessage JOURNAL_WRITE_AFTER_CLOSE
public static final ExceptionMessage UNEXPECETD_JOURNAL_ENTRY
public static final ExceptionMessage UNKNOWN_ENTRY_TYPE
public static final ExceptionMessage FILEID_MUST_BE_FILE
public static final ExceptionMessage RAW_TABLE_COLUMN_OVERRANGE
public static final ExceptionMessage RAW_TABLE_ID_DOES_NOT_EXIST
public static final ExceptionMessage RAW_TABLE_ID_DUPLICATED
public static final ExceptionMessage RAW_TABLE_METADATA_OVERSIZED
public static final ExceptionMessage RAW_TABLE_PATH_DOES_NOT_EXIST
public static final ExceptionMessage LINEAGE_INPUT_FILE_NOT_EXIST
public static final ExceptionMessage LINEAGE_OUTPUT_FILE_NOT_EXIST
public static ExceptionMessage[] values()
for (ExceptionMessage c : ExceptionMessage.values()) System.out.println(c);
public static ExceptionMessage valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All Rights Reserved.