public static enum ReflectionTraceInfo.Kind extends java.lang.Enum<ReflectionTraceInfo.Kind>
Enum Constant and Description |
---|
ClassForName |
ClassNewInstance |
ConstructorNewInstance |
FieldGet |
FieldSet |
MethodInvoke |
Modifier and Type | Method and Description |
---|---|
static ReflectionTraceInfo.Kind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReflectionTraceInfo.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReflectionTraceInfo.Kind ClassForName
public static final ReflectionTraceInfo.Kind ClassNewInstance
public static final ReflectionTraceInfo.Kind ConstructorNewInstance
public static final ReflectionTraceInfo.Kind MethodInvoke
public static final ReflectionTraceInfo.Kind FieldSet
public static final ReflectionTraceInfo.Kind FieldGet
public static ReflectionTraceInfo.Kind[] values()
for (ReflectionTraceInfo.Kind c : ReflectionTraceInfo.Kind.values()) System.out.println(c);
public static ReflectionTraceInfo.Kind 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 null