FormFieldSearchOptions
Inheritance: java.lang.Object, com.groupdocs.signature.options.OptionsExtensions, com.groupdocs.signature.options.search.SearchOptions
public class FormFieldSearchOptions extends SearchOptions
Represents abstract search Options for Form-field signatures.
Constructors
Constructor | Description |
---|---|
FormFieldSearchOptions() | Initializes a new instance of the SearchFormFieldOptions class with default values. |
Methods
Method | Description |
---|---|
getType() | Specifies type of form field signature if it should be searched. |
setType(Integer value) | Specifies type of form field signature if it should be searched. |
getName() | Specifies regular expression pattern of form field signature name if it should be searched. |
setName(String value) | Specifies regular expression pattern of form field signature name if it should be searched. |
getValue() | Specifies value of form field signature if it should be searched. |
setValue(Object value) | Specifies value of form field signature if it should be searched. |
FormFieldSearchOptions()
public FormFieldSearchOptions()
Initializes a new instance of the SearchFormFieldOptions class with default values.
getType()
public final Integer getType()
Specifies type of form field signature if it should be searched. Default value is null.
Returns: java.lang.Integer
setType(Integer value)
public final void setType(Integer value)
Specifies type of form field signature if it should be searched. Default value is null.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.Integer |
getName()
public final String getName()
Specifies regular expression pattern of form field signature name if it should be searched. You can use it simple as “text” or regular expression like “abc\d+”. Default value is empty string.
Returns: java.lang.String
setName(String value)
public final void setName(String value)
Specifies regular expression pattern of form field signature name if it should be searched. You can use it simple as “text” or regular expression like “abc\d+”. Default value is empty string.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String |
getValue()
public final Object getValue()
Specifies value of form field signature if it should be searched. Default value is null.
Returns: java.lang.Object
setValue(Object value)
public final void setValue(Object value)
Specifies value of form field signature if it should be searched. Default value is null.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.Object |