|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Messages>
ezvcard.Messages
public enum Messages
Singleton for accessing the i18n resource bundle.
| Enum Constant Summary | |
|---|---|
INSTANCE
|
|
| Method Summary | |
|---|---|
String |
getMessage(String key,
Object... args)
Gets a message. |
String |
getParseMessage(int code,
Object... args)
Gets a parser warning message. |
String |
getValidationWarning(int code,
Object... args)
Gets a validation warning message. |
static Messages |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Messages[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Messages INSTANCE
| Method Detail |
|---|
public static Messages[] values()
for (Messages c : Messages.values()) System.out.println(c);
public static Messages valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
public String getValidationWarning(int code,
Object... args)
code - the message codeargs - the message arguments
public String getParseMessage(int code,
Object... args)
code - the message codeargs - the message arguments
public String getMessage(String key,
Object... args)
key - the message keyargs - the message arguments
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||