public enum ErrorMessage extends Enum<ErrorMessage>
Enum Constant and Description |
---|
INTERNAL_SERVER_ERROR
Logbook (operation or lifecycle) internal server error
|
LOGBOOK_ALREADY_EXIST
Logbook (operation or lifecycle) already exists so cannot be created
|
LOGBOOK_MISSING_MANDATORY_PARAMETER
Logbook (operation or lifecycle) is missing some mandatory parameters
|
LOGBOOK_NOT_FOUND
Logbook (operation or lifecycle) does not exists so cannot be updated or read
|
Modifier and Type | Method and Description |
---|---|
String |
getMessage() |
static ErrorMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorMessage LOGBOOK_ALREADY_EXIST
public static final ErrorMessage LOGBOOK_NOT_FOUND
public static final ErrorMessage LOGBOOK_MISSING_MANDATORY_PARAMETER
public static final ErrorMessage INTERNAL_SERVER_ERROR
public static ErrorMessage[] values()
for (ErrorMessage c : ErrorMessage.values()) System.out.println(c);
public static ErrorMessage 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 nullpublic String getMessage()
Copyright © 2018 Vitam. All rights reserved.