Creates a boolean NOT expression. It represents the negation of the expression.
Note: The Identifier is not allowed as an input for the NOT operator.
FilterFactory.not( FilterFactory.eq( FilterFactory.property("city_name"), FilterFactory.literal("New York") ) ); Copy
FilterFactory.not( FilterFactory.eq( FilterFactory.property("city_name"), FilterFactory.literal("New York") ) );
the expression to negate.
The Not expression.
Error if the parameter is not an expression
Creates a boolean NOT expression. It represents the negation of the expression.
Note: The Identifier is not allowed as an input for the NOT operator.