![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.stats.api.StatsColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// 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