com.central1.profiler.reporting.ReportFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-profiler Show documentation
Show all versions of maven-profiler Show documentation
Log and POST module execution times
The newest version!
package com.central1.profiler.reporting;
/**
* Full credit to jcgay on github for the original maven-profiler
*
* Licensed under MIT
*
* Modifications by Delan Elliot ([email protected])
*/
public enum ReportFormat {
HTML("html"), JSON("json");
private final String extension;
ReportFormat(String extension) {
this.extension = extension;
}
public String extension() {
return extension;
}
}