Enum GRAPH_TYPE

  • All Implemented Interfaces:
    com4j.ComEnum, java.io.Serializable, java.lang.Comparable<GRAPH_TYPE>

    public enum GRAPH_TYPE
    extends java.lang.Enum<GRAPH_TYPE>
    implements com4j.ComEnum

    Graph types.

    • Enum Constant Detail

      • GRAPH_SUMMARY

        public static final GRAPH_TYPE GRAPH_SUMMARY

        Summary.

        The value of this constant is 0

      • GRAPH_AGE

        public static final GRAPH_TYPE GRAPH_AGE

        Age.

        The value of this constant is 1

      • GRAPH_PROGRESS

        public static final GRAPH_TYPE GRAPH_PROGRESS

        Progress.

        The value of this constant is 2

      • GRAPH_TREND

        public static final GRAPH_TYPE GRAPH_TREND

        Trend.

        The value of this constant is 3

      • GRAPH_COVERAGE

        public static final GRAPH_TYPE GRAPH_COVERAGE

        Coverage.

        The value of this constant is 5

      • KPI_PROGRESS

        public static final GRAPH_TYPE KPI_PROGRESS

        KPI progress.

        The value of this constant is 6

      • GRAPH_RELEASE_SCORECARD

        public static final GRAPH_TYPE GRAPH_RELEASE_SCORECARD

        Release Scorecard.

        The value of this constant is 7

      • KPI_BREAKDOWN

        public static final GRAPH_TYPE KPI_BREAKDOWN

        KPI breakdown.

        The value of this constant is 8

      • KPI_BREAKDOWN_PROGRESS

        public static final GRAPH_TYPE KPI_BREAKDOWN_PROGRESS

        KPI breakdown progress.

        The value of this constant is 9

      • GRAPH_BPM_REQUIREMENS

        public static final GRAPH_TYPE GRAPH_BPM_REQUIREMENS

        BPM Requirement Summary.

        The value of this constant is 10

      • GRAPH_BPM_TESTS

        public static final GRAPH_TYPE GRAPH_BPM_TESTS

        BPM Test Summary.

        The value of this constant is 11

      • GRAPH_BPM_DEFECTS

        public static final GRAPH_TYPE GRAPH_BPM_DEFECTS

        BPM Defect Summary.

        The value of this constant is 12

      • GRAPH_TEST_EXECUTION_TREND

        public static final GRAPH_TYPE GRAPH_TEST_EXECUTION_TREND

        Test Execution Trend.

        The value of this constant is 13

      • GRAPH_REQ_COVERAGE_TREND

        public static final GRAPH_TYPE GRAPH_REQ_COVERAGE_TREND

        Requirement Coverage Trend.

        The value of this constant is 14

    • Method Detail

      • values

        public static GRAPH_TYPE[] 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 (GRAPH_TYPE c : GRAPH_TYPE.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static GRAPH_TYPE 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
      • comEnumValue

        public int comEnumValue()
        Specified by:
        comEnumValue in interface com4j.ComEnum