Package com.uc4.communication
Enum MessageSettings.OpenMessages
- java.lang.Object
-
- java.lang.Enum<MessageSettings.OpenMessages>
-
- com.uc4.communication.MessageSettings.OpenMessages
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MessageSettings.OpenMessages>
- Enclosing class:
- MessageSettings
public static enum MessageSettings.OpenMessages extends java.lang.Enum<MessageSettings.OpenMessages>
Automatically open messages.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORS_WARNINGS
For errors and warnings only.INFORMATION
For information messages.NEVER
Never.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MessageSettings.OpenMessages
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MessageSettings.OpenMessages[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEVER
public static final MessageSettings.OpenMessages NEVER
Never.
-
INFORMATION
public static final MessageSettings.OpenMessages INFORMATION
For information messages.
-
ERRORS_WARNINGS
public static final MessageSettings.OpenMessages ERRORS_WARNINGS
For errors and warnings only.
-
-
Method Detail
-
values
public static MessageSettings.OpenMessages[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MessageSettings.OpenMessages c : MessageSettings.OpenMessages.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MessageSettings.OpenMessages valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-