public enum ErrorMessage extends Enum<ErrorMessage>
| Enum Constant and Description |
|---|
COULD_NOT_CONNECT |
COULD_NOT_CREATE_TEMP_FILE |
| Modifier and Type | Method and Description |
|---|---|
String |
getMessage(Object... args) |
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 COULD_NOT_CREATE_TEMP_FILE
public static final ErrorMessage COULD_NOT_CONNECT
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 nullCopyright © 2016. All rights reserved.