Interface ExprEqualsNode

All Superinterfaces:
ExprNode, ExprNodeRenderable, ExprValidator
All Known Implementing Classes:
ExprEqualsNodeImpl

public interface ExprEqualsNode extends ExprNode
Represents an equals (=, !=, <>, is, is not) comparator in a filter expressiun tree.
  • Method Details

    • isNotEquals

      boolean isNotEquals()
      Returns true if this is a NOT EQUALS node, false if this is a EQUALS node.
      Returns:
      true for !=, false for =
    • isIs

      boolean isIs()
      Returns true if this is a "IS" or "IS NOT" node, false if this is a EQUALS or NOT EQUALS node.
      Returns:
      true for !=, false for =