public enum MessageKey extends java.lang.Enum<MessageKey>
Enum Constant and Description |
---|
CON_ALREADY_CLOSED |
CON_ALREADY_OPENED |
CON_JUST_CLOSED |
CON_JUST_OPENED |
CONFIG_VALIDATION_PASSWORD |
CONFIG_VALIDATION_USER |
EXCEPTION |
PROFILE_APPLIED |
PROFILE_NOT_SELECTED |
SERVER_CHANGED |
Modifier and Type | Method and Description |
---|---|
static MessageKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageKey CON_ALREADY_CLOSED
public static final MessageKey CON_JUST_CLOSED
public static final MessageKey CON_ALREADY_OPENED
public static final MessageKey CON_JUST_OPENED
public static final MessageKey EXCEPTION
public static final MessageKey CONFIG_VALIDATION_USER
public static final MessageKey CONFIG_VALIDATION_PASSWORD
public static final MessageKey SERVER_CHANGED
public static final MessageKey PROFILE_APPLIED
public static final MessageKey PROFILE_NOT_SELECTED
public static MessageKey[] values()
for (MessageKey c : MessageKey.values()) System.out.println(c);
public static MessageKey valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null