public enum GhostWriter extends java.lang.Enum<GhostWriter>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static void |
entering(java.lang.Object source,
java.lang.String method,
java.lang.Object... params) |
static void |
exiting(java.lang.Object source,
java.lang.String method) |
static void |
exiting(java.lang.Object source,
java.lang.String method,
java.lang.Object retVal) |
static void |
onError(java.lang.Object source,
java.lang.String method,
java.lang.Throwable error) |
static void |
setTracerProvider(TracerProvider<? extends Tracer> tp) |
static void |
valueChange(java.lang.Object source,
java.lang.String method,
java.lang.String variable,
java.lang.Object value) |
static GhostWriter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GhostWriter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GhostWriter INSTANCE
public static GhostWriter[] values()
for (GhostWriter c : GhostWriter.values()) System.out.println(c);
public static GhostWriter 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 setTracerProvider(TracerProvider<? extends Tracer> tp)
public static void entering(java.lang.Object source,
java.lang.String method,
java.lang.Object... params)
public static void exiting(java.lang.Object source,
java.lang.String method,
java.lang.Object retVal)
public static void exiting(java.lang.Object source,
java.lang.String method)
public static void valueChange(java.lang.Object source,
java.lang.String method,
java.lang.String variable,
java.lang.Object value)
public static void onError(java.lang.Object source,
java.lang.String method,
java.lang.Throwable error)