Enum Class BLCOperator

java.lang.Object
java.lang.Enum<BLCOperator>
org.broadleafcommerce.openadmin.web.rulebuilder.BLCOperator
All Implemented Interfaces:
Serializable, Comparable<BLCOperator>, Constable

public enum BLCOperator extends Enum<BLCOperator>
Author:
Elbert Bautista (elbertbautista)
  • Enum Constant Details

    • EQUALS

      public static final BLCOperator EQUALS
    • NOT_EQUAL

      public static final BLCOperator NOT_EQUAL
    • IEQUALS

      public static final BLCOperator IEQUALS
    • INOT_EQUAL

      public static final BLCOperator INOT_EQUAL
    • GREATER_THAN

      public static final BLCOperator GREATER_THAN
    • LESS_THAN

      public static final BLCOperator LESS_THAN
    • GREATER_OR_EQUAL

      public static final BLCOperator GREATER_OR_EQUAL
    • LESS_OR_EQUAL

      public static final BLCOperator LESS_OR_EQUAL
    • CONTAINS

      public static final BLCOperator CONTAINS
    • STARTS_WITH

      public static final BLCOperator STARTS_WITH
    • ENDS_WITH

      public static final BLCOperator ENDS_WITH
    • ICONTAINS

      public static final BLCOperator ICONTAINS
    • ISTARTS_WITH

      public static final BLCOperator ISTARTS_WITH
    • IENDS_WITH

      public static final BLCOperator IENDS_WITH
    • NOT_CONTAINS

      public static final BLCOperator NOT_CONTAINS
    • NOT_STARTS_WITH

      public static final BLCOperator NOT_STARTS_WITH
    • NOT_ENDS_WITH

      public static final BLCOperator NOT_ENDS_WITH
    • INOT_CONTAINS

      public static final BLCOperator INOT_CONTAINS
    • INOT_STARTS_WITH

      public static final BLCOperator INOT_STARTS_WITH
    • INOT_ENDS_WITH

      public static final BLCOperator INOT_ENDS_WITH
    • REGEXP

      public static final BLCOperator REGEXP
    • IREGEXP

      public static final BLCOperator IREGEXP
    • IS_NULL

      public static final BLCOperator IS_NULL
    • NOT_NULL

      public static final BLCOperator NOT_NULL
    • IN_SET

      public static final BLCOperator IN_SET
    • NOT_IN_SET

      public static final BLCOperator NOT_IN_SET
    • EQUALS_FIELD

      public static final BLCOperator EQUALS_FIELD
    • NOT_EQUAL_FIELD

      public static final BLCOperator NOT_EQUAL_FIELD
    • GREATER_THAN_FIELD

      public static final BLCOperator GREATER_THAN_FIELD
    • LESS_THAN_FIELD

      public static final BLCOperator LESS_THAN_FIELD
    • GREATER_OR_EQUAL_FIELD

      public static final BLCOperator GREATER_OR_EQUAL_FIELD
    • LESS_OR_EQUAL_FIELD

      public static final BLCOperator LESS_OR_EQUAL_FIELD
    • CONTAINS_FIELD

      public static final BLCOperator CONTAINS_FIELD
    • STARTS_WITH_FIELD

      public static final BLCOperator STARTS_WITH_FIELD
    • ENDS_WITH_FIELD

      public static final BLCOperator ENDS_WITH_FIELD
    • AND

      public static final BLCOperator AND
    • NOT

      public static final BLCOperator NOT
    • OR

      public static final BLCOperator OR
    • BETWEEN

      public static final BLCOperator BETWEEN
    • BETWEEN_INCLUSIVE

      public static final BLCOperator BETWEEN_INCLUSIVE
    • COUNT_GREATER_THAN

      public static final BLCOperator COUNT_GREATER_THAN
    • COUNT_GREATER_OR_EQUAL

      public static final BLCOperator COUNT_GREATER_OR_EQUAL
    • COUNT_LESS_THAN

      public static final BLCOperator COUNT_LESS_THAN
    • COUNT_LESS_OR_EQUAL

      public static final BLCOperator COUNT_LESS_OR_EQUAL
    • COUNT_EQUALS

      public static final BLCOperator COUNT_EQUALS
    • COLLECTION_IN

      public static final BLCOperator COLLECTION_IN
    • COLLECTION_NOT_IN

      public static final BLCOperator COLLECTION_NOT_IN
    • WITHIN_DAYS

      public static final BLCOperator WITHIN_DAYS
  • Method Details

    • values

      public static BLCOperator[] 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 BLCOperator 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