Interface MessageMethod.Message
- Enclosing interface:
MessageMethod
public static interface MessageMethod.Message
Represents a
Message annotation on a method.-
Method Summary
Modifier and TypeMethodDescriptionformat()The message format type for the message.booleanhasId()Checks if the message has an id that was provided.intid()The message id for the message to use.booleanChecks if the message id was inherited.value()A format string that can be used with theformat().
-
Method Details
-
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. Returnstrueif the message id was specified or inherited, otherwise returnsfalse.- Returns:
trueif the message id was provided, otherwisefalse.
-
inheritsId
boolean inheritsId()Checks if the message id was inherited. Returnstrueonly if the message id is inherited, otherwisefalseis returned.- Returns:
trueif the message id was inherited, otherwisefalse.
-
value
String value()A format string that can be used with theformat().- Returns:
- a format string.
-
format
Message.Format format()The message format type for the message.- Returns:
- the format type.
-