Enum Spec.Parameter.ParameterType

    • Enum Constant Detail

      • Static

        public static final Spec.Parameter.ParameterType Static
         Static parameter. The value of the parameter is defined at the Step.
         
        Static = 0;
      • Dynamic

        public static final Spec.Parameter.ParameterType Dynamic
         Dynamic parameter. This is a parameter placeholder, and the actual value is injected at runtime, depending on the context of the call.
         
        Dynamic = 1;
      • Special_String

        public static final Spec.Parameter.ParameterType Special_String
         Special paramter, taking a string value. Special paramters are read from a file.
         
        Special_String = 2;
      • Special_Table

        public static final Spec.Parameter.ParameterType Special_Table
         Special paramter, taking a Table value. This parameter is read from a csv file.
         
        Special_Table = 3;
    • Field Detail

      • Static_VALUE

        public static final int Static_VALUE
         Static parameter. The value of the parameter is defined at the Step.
         
        Static = 0;
        See Also:
        Constant Field Values
      • Dynamic_VALUE

        public static final int Dynamic_VALUE
         Dynamic parameter. This is a parameter placeholder, and the actual value is injected at runtime, depending on the context of the call.
         
        Dynamic = 1;
        See Also:
        Constant Field Values
      • Special_String_VALUE

        public static final int Special_String_VALUE
         Special paramter, taking a string value. Special paramters are read from a file.
         
        Special_String = 2;
        See Also:
        Constant Field Values
      • Special_Table_VALUE

        public static final int Special_Table_VALUE
         Special paramter, taking a Table value. This parameter is read from a csv file.
         
        Special_Table = 3;
        See Also:
        Constant Field Values
      • Table_VALUE

        public static final int Table_VALUE
         A table parameter, used for data driven execution.
         
        Table = 4;
        See Also:
        Constant Field Values
    • Method Detail

      • values

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

        public static Spec.Parameter.ParameterType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
        Specified by:
        getNumber in interface com.google.protobuf.Internal.EnumLite
        Specified by:
        getNumber in interface com.google.protobuf.ProtocolMessageEnum
      • valueOf

        @Deprecated
        public static Spec.Parameter.ParameterType valueOf​(int value)
        Deprecated.
        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:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getValueDescriptor

        public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
        Specified by:
        getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptorForType

        public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
      • getDescriptor

        public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
      • valueOf

        public static Spec.Parameter.ParameterType valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
        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:
        desc - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null