public enum MessageIcons extends Enum<MessageIcons>
| Enum Constant and Description |
|---|
ERROR_ICON |
NOK_ICON |
NOOP_ICON |
OK_ICON |
WARN_ICON |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static MessageIcons |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageIcons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageIcons OK_ICON
public static final MessageIcons NOK_ICON
public static final MessageIcons NOOP_ICON
public static final MessageIcons WARN_ICON
public static final MessageIcons ERROR_ICON
public static MessageIcons[] values()
for (MessageIcons c : MessageIcons.values()) System.out.println(c);
public static MessageIcons 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 nullpublic String toString()
toString in class Enum<MessageIcons>Copyright © 2021 JBoss by Red Hat. All rights reserved.