@Published public enum MessageLevel extends java.lang.Enum<MessageLevel>
| Enum Constant and Description |
|---|
ERROR
エラーレベルのメッセージ。
処理を継続できない問題の発生を通知するメッセージに指定する。
|
INFO
情報レベルのメッセージ。
正常に処理が行なわれている際に表示するメッセージに指定する。
|
WARN
警告レベルのメッセージ。
処理を継続可能であるが、確認が必要な情報を通知するメッセージに指定する。
|
| Modifier and Type | Method and Description |
|---|---|
static MessageLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageLevel INFO
public static final MessageLevel WARN
public static final MessageLevel ERROR
public static MessageLevel[] values()
for (MessageLevel c : MessageLevel.values()) System.out.println(c);
public static MessageLevel 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 null