public enum ErrorMessage extends Enum<ErrorMessage>
Enum Constant and Description |
---|
INGEST_EXTERNAL_UPLOAD_ERROR
Ingest external upload failed
|
INGEST_EXTERNAL_UPLOAD_WITH_WARNING
Ingest external upload with warning
|
INTERNAL_SERVER_ERROR |
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 INGEST_EXTERNAL_UPLOAD_ERROR
public static final ErrorMessage INGEST_EXTERNAL_UPLOAD_WITH_WARNING
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.