| Modifier and Type | Method and Description |
|---|---|
static void |
error(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message)
Display an error message.
|
static void |
initialize(javax.annotation.processing.Messager msg) |
static void |
note(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message) |
static Logger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Logger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static void |
warning(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message) |
public static Logger[] values()
for (Logger c : Logger.values()) System.out.println(c);
public static Logger 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 nullpublic static void note(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message)
public static void warning(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message)
public static void error(java.lang.Class<?> type,
java.lang.String method,
java.lang.String message)
type - - class that produced the errormethod - - method that produced the errormessage - - error descriptionpublic static void initialize(javax.annotation.processing.Messager msg)