Class FilterProjectionExpression


  • public final class FilterProjectionExpression
    extends JmespathExpression
    A projection that filters values using a comparison.

    A filter projection executes the left AST expression, expects it to return an array of values, passes each result of the left expression to a ComparatorExpression, and yields any value from the comparison expression that returns true to the right AST expression.

    See Also:
    Filter Expressions
    • Method Detail

      • accept

        public <T> T accept​(ExpressionVisitor<T> visitor)
        Description copied from class: JmespathExpression
        Visits a node using a double-dispatch visitor.
        Specified by:
        accept in class JmespathExpression
        Type Parameters:
        T - Type of value the visitor returns.
        Parameters:
        visitor - Visitor to accept on the node.
        Returns:
        Returns the result of applying the visitor.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object