com.appland.appmap.transform.annotations.MethodEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.transform.annotations;
public enum MethodEvent {
METHOD_INVOCATION("call", 0),
METHOD_RETURN("return", 1),
METHOD_EXCEPTION("return", 2);
private String eventString;
private Integer index;
MethodEvent(String eventString, Integer index) {
this.eventString = eventString;
this.index = index;
}
public String getEventString() {
return this.eventString;
}
public Integer getIndex() {
return this.index;
}
}