Enum StatsColumn

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<StatsColumn>

    public enum StatsColumn
    extends java.lang.Enum<StatsColumn>
    • Enum Constant Detail

      • SESSION_ID

        public static final StatsColumn SESSION_ID
      • DIAGRAM_TYPE

        public static final StatsColumn DIAGRAM_TYPE
      • 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 name
        java.lang.NullPointerException - if the argument is null
      • getTitle

        public java.lang.String getTitle()