@Documented @Retention(value=RUNTIME) @Target(value=PARAMETER) public static @interface Advice.Origin
Advice
,
Advice.OnMethodEnter
,
Advice.OnMethodExit
Modifier and Type | Fields and Description |
---|---|
static String |
DEFAULT
Indicates that the origin string should be indicated by the
Object.toString() representation of the instrumented method. |
public static final String DEFAULT
Object.toString()
representation of the instrumented method.public abstract String value
Annotation.toString()
representation
of the method is assigned. Alternatively, a pattern can be assigned where #t
inserts the method's declaring type,
#m
inserts the name of the method (<init>
for constructors and <clinit>
for static initializers)
and #d
for the method's descriptor. Any other #
character must be escaped by \
which can be
escaped by itself.Copyright © 2014–2016. All rights reserved.