Package adams.gui.flow
Enum FlowPanelNotificationArea.NotificationType
- java.lang.Object
-
- java.lang.Enum<FlowPanelNotificationArea.NotificationType>
-
- adams.gui.flow.FlowPanelNotificationArea.NotificationType
-
- All Implemented Interfaces:
Serializable
,Comparable<FlowPanelNotificationArea.NotificationType>
- Enclosing class:
- FlowPanelNotificationArea
public static enum FlowPanelNotificationArea.NotificationType extends Enum<FlowPanelNotificationArea.NotificationType>
The type of notification.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getIcon()
Returns the icon associated with the type.static FlowPanelNotificationArea.NotificationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static FlowPanelNotificationArea.NotificationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAIN
public static final FlowPanelNotificationArea.NotificationType PLAIN
-
INFO
public static final FlowPanelNotificationArea.NotificationType INFO
-
WARNING
public static final FlowPanelNotificationArea.NotificationType WARNING
-
ERROR
public static final FlowPanelNotificationArea.NotificationType ERROR
-
QUESTION
public static final FlowPanelNotificationArea.NotificationType QUESTION
-
-
Method Detail
-
values
public static FlowPanelNotificationArea.NotificationType[] 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 (FlowPanelNotificationArea.NotificationType c : FlowPanelNotificationArea.NotificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowPanelNotificationArea.NotificationType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getIcon
public String getIcon()
Returns the icon associated with the type.- Returns:
- the icon name, null if none
-
-