Package com.hellosign.openapi.model
Enum SubFormFieldRuleTrigger.OperatorEnum
- java.lang.Object
-
- java.lang.Enum<SubFormFieldRuleTrigger.OperatorEnum>
-
- com.hellosign.openapi.model.SubFormFieldRuleTrigger.OperatorEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SubFormFieldRuleTrigger.OperatorEnum>
- Enclosing class:
- SubFormFieldRuleTrigger
public static enum SubFormFieldRuleTrigger.OperatorEnum extends java.lang.Enum<SubFormFieldRuleTrigger.OperatorEnum>
Different field types allow different `operator` values: - Field type of **text**: - **is**: exact match - **not**: not exact match - **match**: regular expression, without /. Example: - OK `[a-zA-Z0-9]` - Not OK `/[a-zA-Z0-9]/` - Field type of **dropdown**: - **is**: exact match, single value - **not**: not exact match, single value - **any**: exact match, array of values. - **none**: not exact match, array of values. - Field type of **checkbox**: - **is**: exact match, single value - **not**: not exact match, single value - Field type of **radio**: - **is**: exact match, single value - **not**: not exact match, single value
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SubFormFieldRuleTrigger.OperatorEnum
fromValue(java.lang.String value)
java.lang.String
getValue()
java.lang.String
toString()
static SubFormFieldRuleTrigger.OperatorEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SubFormFieldRuleTrigger.OperatorEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANY
public static final SubFormFieldRuleTrigger.OperatorEnum ANY
-
IS
public static final SubFormFieldRuleTrigger.OperatorEnum IS
-
MATCH
public static final SubFormFieldRuleTrigger.OperatorEnum MATCH
-
NONE
public static final SubFormFieldRuleTrigger.OperatorEnum NONE
-
NOT
public static final SubFormFieldRuleTrigger.OperatorEnum NOT
-
-
Method Detail
-
values
public static SubFormFieldRuleTrigger.OperatorEnum[] 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 (SubFormFieldRuleTrigger.OperatorEnum c : SubFormFieldRuleTrigger.OperatorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubFormFieldRuleTrigger.OperatorEnum 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 namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<SubFormFieldRuleTrigger.OperatorEnum>
-
fromValue
public static SubFormFieldRuleTrigger.OperatorEnum fromValue(java.lang.String value)
-
-