public enum ErrorMessageSentValues extends java.lang.Enum<ErrorMessageSentValues>
ErrorMessage Sent : sending of error labels option
Modifier and Type | Method and Description |
---|---|
static ErrorMessageSentValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorMessageSentValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorMessageSentValues _N
N: sends error keys only
public static final ErrorMessageSentValues _Y
Y: sends error labels (default)
public static final ErrorMessageSentValues NONE
NONE: uses the option selected for the Dialog
public static ErrorMessageSentValues 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 nullpublic static ErrorMessageSentValues[] values()
for (ErrorMessageSentValues c : ErrorMessageSentValues.values()) System.out.println(c);