Enum RuleIrAttributeOperator

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CONTAINS
      Generated enum value for RuleIrAttributeOperator.CONTAINS("contains") value defined at extension ruleengineservices.
      EQUAL
      Generated enum value for RuleIrAttributeOperator.EQUAL("==") value defined at extension ruleengineservices.
      GREATER_THAN
      Generated enum value for RuleIrAttributeOperator.GREATER_THAN(">") value defined at extension ruleengineservices.
      GREATER_THAN_OR_EQUAL
      Generated enum value for RuleIrAttributeOperator.GREATER_THAN_OR_EQUAL(">=") value defined at extension ruleengineservices.
      IN
      Generated enum value for RuleIrAttributeOperator.IN("in") value defined at extension ruleengineservices.
      LESS_THAN
      Generated enum value for RuleIrAttributeOperator.LESS_THAN("<") value defined at extension ruleengineservices.
      LESS_THAN_OR_EQUAL
      Generated enum value for RuleIrAttributeOperator.LESS_THAN_OR_EQUAL("<=") value defined at extension ruleengineservices.
      MEMBER_OF
      Generated enum value for RuleIrAttributeOperator.MEMBER_OF("memberOf") value defined at extension ruleengineservices.
      NOT_CONTAINS
      Generated enum value for RuleIrAttributeOperator.NOT_CONTAINS("not contains") value defined at extension ruleengineservices.
      NOT_EQUAL
      Generated enum value for RuleIrAttributeOperator.NOT_EQUAL("!=") value defined at extension ruleengineservices.
      NOT_IN
      Generated enum value for RuleIrAttributeOperator.NOT_IN("not in") value defined at extension ruleengineservices.
    • Enum Constant Detail

      • EQUAL

        public static final RuleIrAttributeOperator EQUAL
        Generated enum value for RuleIrAttributeOperator.EQUAL("==") value defined at extension ruleengineservices.
      • NOT_EQUAL

        public static final RuleIrAttributeOperator NOT_EQUAL
        Generated enum value for RuleIrAttributeOperator.NOT_EQUAL("!=") value defined at extension ruleengineservices.
      • GREATER_THAN

        public static final RuleIrAttributeOperator GREATER_THAN
        Generated enum value for RuleIrAttributeOperator.GREATER_THAN(">") value defined at extension ruleengineservices.
      • GREATER_THAN_OR_EQUAL

        public static final RuleIrAttributeOperator GREATER_THAN_OR_EQUAL
        Generated enum value for RuleIrAttributeOperator.GREATER_THAN_OR_EQUAL(">=") value defined at extension ruleengineservices.
      • LESS_THAN

        public static final RuleIrAttributeOperator LESS_THAN
        Generated enum value for RuleIrAttributeOperator.LESS_THAN("<") value defined at extension ruleengineservices.
      • LESS_THAN_OR_EQUAL

        public static final RuleIrAttributeOperator LESS_THAN_OR_EQUAL
        Generated enum value for RuleIrAttributeOperator.LESS_THAN_OR_EQUAL("<=") value defined at extension ruleengineservices.
      • IN

        public static final RuleIrAttributeOperator IN
        Generated enum value for RuleIrAttributeOperator.IN("in") value defined at extension ruleengineservices.
      • NOT_IN

        public static final RuleIrAttributeOperator NOT_IN
        Generated enum value for RuleIrAttributeOperator.NOT_IN("not in") value defined at extension ruleengineservices.
      • CONTAINS

        public static final RuleIrAttributeOperator CONTAINS
        Generated enum value for RuleIrAttributeOperator.CONTAINS("contains") value defined at extension ruleengineservices.
      • NOT_CONTAINS

        public static final RuleIrAttributeOperator NOT_CONTAINS
        Generated enum value for RuleIrAttributeOperator.NOT_CONTAINS("not contains") value defined at extension ruleengineservices.
      • MEMBER_OF

        public static final RuleIrAttributeOperator MEMBER_OF
        Generated enum value for RuleIrAttributeOperator.MEMBER_OF("memberOf") value defined at extension ruleengineservices.
    • Method Detail

      • values

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

        public static RuleIrAttributeOperator 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
      • getValue

        public java.lang.String getValue()