Enum DataGen

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<DataGen>, java.lang.constant.Constable

    public enum DataGen
    extends java.lang.Enum<DataGen>
    An enum that represents the values that are currently usable in the DataGen field of a TestStep
    Since:
    1.0.0
    • 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
      AUTOGENERATE
      Used to tell the Fast framework to autogenerate data based on what value is in the DataType field (AutoGenerateDataType) of a TestStep.
      NONE
      Used for when no DataGen is being used in the DataGen field of a TestStep.
      RESOLVE_REFERENCES
      Used to tell the Fast framework that there are references within a TestStep that need to be resolved.
    • Method Summary

      Modifier and Type Method Description
      static DataGen valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static DataGen[] 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

      • AUTOGENERATE

        public static final DataGen AUTOGENERATE
        Used to tell the Fast framework to autogenerate data based on what value is in the DataType field (AutoGenerateDataType) of a TestStep.
        Since:
        1.0.0
      • RESOLVE_REFERENCES

        public static final DataGen RESOLVE_REFERENCES
        Used to tell the Fast framework that there are references within a TestStep that need to be resolved.
        Since:
        1.0.0
      • NONE

        public static final DataGen NONE
        Used for when no DataGen is being used in the DataGen field of a TestStep.
        Since:
        1.0.0
    • Method Detail

      • values

        public static DataGen[] 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 DataGen 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