Enum 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