Class OrExpression


  • public class OrExpression
    extends Object
    An or expression will evaluate to either the left expression or the right expression. If the evaluation of the left expression is not false it is used as the return value. If the evaluation of the right expression is not false it is used as the return value. If neither the left or right expression are non-null, then a value of null is returned. Examples:
    • True || False
    • Number || EmptyList
    • a == `1` || b == `2`
    https://jmespath.org/specification.html#or-expressions
    • Constructor Detail

    • Method Detail

      • leftExpression

        public Expression leftExpression()
      • rightExpression

        public Expression rightExpression()