Enum Class RuleIrAttributeOperator

java.lang.Object
java.lang.Enum<RuleIrAttributeOperator>
de.hybris.platform.ruleengineservices.compiler.RuleIrAttributeOperator
All Implemented Interfaces:
Serializable, Comparable<RuleIrAttributeOperator>, Constable

public enum RuleIrAttributeOperator extends Enum<RuleIrAttributeOperator>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

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

    Modifier and Type
    Method
    Description
     
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • 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 Details

    • values

      public static RuleIrAttributeOperator[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RuleIrAttributeOperator valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
    • fromValue

      public static RuleIrAttributeOperator fromValue(String value)