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

com.central1.profiler.reporting.ReportFormat Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy