Interface MessageMethod.Message
-
- Enclosing interface:
- MessageMethod
public static interface MessageMethod.Message
Represents aMessage
annotation on a method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Message.Format
format()
The message format type for the message.boolean
hasId()
Checks if the message has an id that was provided.int
id()
The message id for the message to use.boolean
inheritsId()
Checks if the message id was inherited.String
value()
A format string that can be used with theformat()
.
-
-
-
Method Detail
-
id
int id()
The message id for the message to use. Any id less than 0 will be ignored.- Returns:
- the message id.
-
hasId
boolean hasId()
Checks if the message has an id that was provided. Returnstrue
if the message id was specified or inherited, otherwise returnsfalse
.- Returns:
true
if the message id was provided, otherwisefalse
.
-
inheritsId
boolean inheritsId()
Checks if the message id was inherited. Returnstrue
only if the message id is inherited, otherwisefalse
is returned.- Returns:
true
if the message id was inherited, otherwisefalse
.
-
format
Message.Format format()
The message format type for the message.- Returns:
- the format type.
-
-