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

net.sourceforge.plantuml.stats.api.StatsColumn Maven / Gradle / Ivy

There is a newer version: 1.2025.0
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.stats.api;

public enum StatsColumn {
    // ::remove folder when __HAXE__
	SESSION_ID("Session ID"), DIAGRAM_TYPE("Diagram type"), FORMAT("Format"), VERSION("Version"), STARTING("Starting"),
	LAST("Last"), DURATION_STRING("Duration"), PARSED_COUNT("# Parsed"), PARSED_MEAN_TIME("Mean parsing\\ntime (ms)"),
	PARSED_STANDARD_DEVIATION("Standard\\ndeviation (ms)"), PARSED_MAX_TIME("Max parsing\\ntime (ms)"),
	GENERATED_COUNT("# Generated"), GENERATED_MEAN_TIME("Mean generation\\ntime (ms)"),
	GENERATED_STANDARD_DEVIATION("Standard\\ndeviation (ms)"), GENERATED_MAX_TIME("Max generation\\ntime (ms)");

	private final String title;

	private StatsColumn(String title) {
		this.title = title;
	}

	public String getTitle() {
		return title;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy