All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.appland.appmap.transform.annotations.MethodEvent Maven / Gradle / Ivy

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy