public enum MessageTypeId extends Enum<MessageTypeId>
Message,
TreePathMessage,
TimelineObjectPathMessage| Enum Constant and Description |
|---|
ERROR
Used for messages that contain an error message.
|
INFORMATION
Identifies messages that have a purely informational character.
|
WARNING
Used for messages that contain a warning message.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageTypeId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessageTypeId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageTypeId INFORMATION
public static final MessageTypeId WARNING
public static final MessageTypeId ERROR
public static MessageTypeId[] values()
for (MessageTypeId c : MessageTypeId.values()) System.out.println(c);
public static MessageTypeId 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 nullCopyright © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.