Class ArrayExpressionIn


  • public final class ArrayExpressionIn
    extends java.lang.Object
    The In class represents the IN clause object in a quantified operator (ANY/ANY AND EVERY/EVERY <variable name> IN <expr> SATISFIES <expr>). The IN clause is used for specifying an array object or an expression evaluated as an array object, each item of which will be evaluated against the satisfies expression.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ArrayExpressionSatisfies in​(Expression expression)
      Creates a Satisfies clause object with the given IN clause expression that could be an array object or an expression evaluated as an array object.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • in

        @NonNull
        public ArrayExpressionSatisfies in​(@NonNull
                                           Expression expression)
        Creates a Satisfies clause object with the given IN clause expression that could be an array object or an expression evaluated as an array object.
        Parameters:
        expression - the expression evaluated as an array object.
        Returns:
        A Satisfies object.