Package | Description |
---|---|
nablarch.core.message |
アプリケーションで使用するメッセージの管理を行う機能を提供する。
|
Modifier and Type | Method and Description |
---|---|
MessageLevel |
Message.getLevel()
メッセージの通知レベルを取得する。
|
static MessageLevel |
MessageLevel.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageLevel[] |
MessageLevel.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static Message |
MessageUtil.createMessage(MessageLevel level,
java.lang.String messageId,
java.lang.Object... options)
メッセージを生成する。
テンプレート文字列が以下であるときの例を示す。
「errors.maxLength={0}は{1}文字以下で入力してください。」 例: |
Constructor and Description |
---|
Message(MessageLevel level,
StringResource stringResource)
メッセージの通知レベル、文字列リソースを指定して、インスタンスを生成する。
|
Message(MessageLevel level,
StringResource stringResource,
java.lang.Object[] option)
メッセージの通知レベル、文字列リソース、オプションパラメータを指定して、インスタンスを生成する。
|