Enum DataFields

    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ALL
      Enum constant used to represent using all other values in DataFields
      DATA
      Enum constant used to represent the Data field in a TestStep
      DESCRIPTION
      Enum constant used to represent the Description field in a TestStep
      FRAME
      Enum constant used to represent the Frame field in a TestStep
      NAME
      Enum constant used to represent the Name field in a TestStep
      OBJECT
      Enum constant used to represent the Object field in a TestStep
      PAGE
      Enum constant used to represent the Page field in a TestStep
      PARAMS
      Enum constant used to represent the DataParameter field in a TestStep
      REFERENCE
      Enum constant used to represent the Reference field in a TestStep
    • Method Summary

      Modifier and Type Method Description
      static DataFields valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DataFields[] 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, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

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

      • ALL

        public static final DataFields ALL
        Enum constant used to represent using all other values in DataFields
        Since:
        1.0.0
      • DATA

        public static final DataFields DATA
        Enum constant used to represent the Data field in a TestStep
        Since:
        1.0.0
      • PAGE

        public static final DataFields PAGE
        Enum constant used to represent the Page field in a TestStep
        Since:
        1.0.0
      • FRAME

        public static final DataFields FRAME
        Enum constant used to represent the Frame field in a TestStep
        Since:
        1.0.0
      • NAME

        public static final DataFields NAME
        Enum constant used to represent the Name field in a TestStep
        Since:
        1.0.0
      • DESCRIPTION

        public static final DataFields DESCRIPTION
        Enum constant used to represent the Description field in a TestStep
        Since:
        1.0.0
      • OBJECT

        public static final DataFields OBJECT
        Enum constant used to represent the Object field in a TestStep
        Since:
        1.0.0
      • PARAMS

        public static final DataFields PARAMS
        Enum constant used to represent the DataParameter field in a TestStep
        Since:
        1.0.0
      • REFERENCE

        public static final DataFields REFERENCE
        Enum constant used to represent the Reference field in a TestStep
        Since:
        1.0.0
    • Method Detail

      • values

        public static DataFields[] values()
        Returns an array containing the constants of this enum type, in the order they are declared.
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DataFields 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