Enum GRAPH_PROPERTIES

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

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

    Graph properties.

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      GRAPH_CYCLE
      In test requirment module, set the cycle for the coverage graph.
      GRAPH_GROUP_BY
      Name of the field to group by.
      GRAPH_GROUP_BY_SHOW_FULL_PATH
      In test plan and test lab modules, defines whether Group By subject or test set full paths should be displayed.
      GRAPH_PROJECTS
      Defines the selected projects for cross project graph generation.
      GRAPH_RELEASE
      In test requirment module, set the release for the coverage graph.
      GRAPH_SHOW_NOT_COVERED_PARENTS
      In requirements module, if true, not-covered parent requirements are included as well.
      GRAPH_START_DATE
      Starting date for trend and progress graphs.
      GRAPH_SUM_OF
      Name of the field to sum the values of.
      GRAPH_TEST_SET_ID
      In test lab module, defines the ID of the test set to build graph for.
      GRAPH_XAXIS
      Name of the field to use as X axis for summary graph.
      GRAPH_XAXIS_SHOW_FULL_PATH
      In test plan and test lab modules, defines whether XAxis subject or test set full paths should be displayed.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int comEnumValue()  
      static GRAPH_PROPERTIES valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static GRAPH_PROPERTIES[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • GRAPH_XAXIS

        public static final GRAPH_PROPERTIES GRAPH_XAXIS

        Name of the field to use as X axis for summary graph.

        The value of this constant is 0

      • GRAPH_GROUP_BY

        public static final GRAPH_PROPERTIES GRAPH_GROUP_BY

        Name of the field to group by.

        The value of this constant is 1

      • GRAPH_SUM_OF

        public static final GRAPH_PROPERTIES GRAPH_SUM_OF

        Name of the field to sum the values of. The sum is displayed instead of the entities' count.

        The value of this constant is 2

      • GRAPH_START_DATE

        public static final GRAPH_PROPERTIES GRAPH_START_DATE

        Starting date for trend and progress graphs.

        The value of this constant is 3

      • GRAPH_SHOW_NOT_COVERED_PARENTS

        public static final GRAPH_PROPERTIES GRAPH_SHOW_NOT_COVERED_PARENTS

        In requirements module, if true, not-covered parent requirements are included as well.

        The value of this constant is 4

      • GRAPH_TEST_SET_ID

        public static final GRAPH_PROPERTIES GRAPH_TEST_SET_ID

        In test lab module, defines the ID of the test set to build graph for.

        The value of this constant is 5

      • GRAPH_XAXIS_SHOW_FULL_PATH

        public static final GRAPH_PROPERTIES GRAPH_XAXIS_SHOW_FULL_PATH

        In test plan and test lab modules, defines whether XAxis subject or test set full paths should be displayed.

        The value of this constant is 8

      • GRAPH_GROUP_BY_SHOW_FULL_PATH

        public static final GRAPH_PROPERTIES GRAPH_GROUP_BY_SHOW_FULL_PATH

        In test plan and test lab modules, defines whether Group By subject or test set full paths should be displayed.

        The value of this constant is 9

      • GRAPH_CYCLE

        public static final GRAPH_PROPERTIES GRAPH_CYCLE

        In test requirment module, set the cycle for the coverage graph.

        The value of this constant is 10

      • GRAPH_RELEASE

        public static final GRAPH_PROPERTIES GRAPH_RELEASE

        In test requirment module, set the release for the coverage graph.

        The value of this constant is 11

      • GRAPH_PROJECTS

        public static final GRAPH_PROPERTIES GRAPH_PROJECTS

        Defines the selected projects for cross project graph generation.

        The value of this constant is 12

    • Method Detail

      • values

        public static GRAPH_PROPERTIES[] 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_PROPERTIES c : GRAPH_PROPERTIES.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_PROPERTIES 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