Enum StatsColumn
- java.lang.Object
-
- java.lang.Enum<StatsColumn>
-
- net.sourceforge.plantuml.stats.api.StatsColumn
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StatsColumn>
public enum StatsColumn extends java.lang.Enum<StatsColumn>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIAGRAM_TYPE
DURATION_STRING
FORMAT
GENERATED_COUNT
GENERATED_MAX_TIME
GENERATED_MEAN_TIME
GENERATED_STANDARD_DEVIATION
LAST
PARSED_COUNT
PARSED_MAX_TIME
PARSED_MEAN_TIME
PARSED_STANDARD_DEVIATION
SESSION_ID
STARTING
VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getTitle()
static StatsColumn
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StatsColumn[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SESSION_ID
public static final StatsColumn SESSION_ID
-
DIAGRAM_TYPE
public static final StatsColumn DIAGRAM_TYPE
-
FORMAT
public static final StatsColumn FORMAT
-
VERSION
public static final StatsColumn VERSION
-
STARTING
public static final StatsColumn STARTING
-
LAST
public static final StatsColumn LAST
-
DURATION_STRING
public static final StatsColumn DURATION_STRING
-
PARSED_COUNT
public static final StatsColumn PARSED_COUNT
-
PARSED_MEAN_TIME
public static final StatsColumn PARSED_MEAN_TIME
-
PARSED_STANDARD_DEVIATION
public static final StatsColumn PARSED_STANDARD_DEVIATION
-
PARSED_MAX_TIME
public static final StatsColumn PARSED_MAX_TIME
-
GENERATED_COUNT
public static final StatsColumn GENERATED_COUNT
-
GENERATED_MEAN_TIME
public static final StatsColumn GENERATED_MEAN_TIME
-
GENERATED_STANDARD_DEVIATION
public static final StatsColumn GENERATED_STANDARD_DEVIATION
-
GENERATED_MAX_TIME
public static final StatsColumn GENERATED_MAX_TIME
-
-
Method Detail
-
values
public static StatsColumn[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatsColumn c : StatsColumn.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatsColumn valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getTitle
public java.lang.String getTitle()
-
-