273274275276277278279
} @SuppressWarnings("unchecked") static Expression simpleCase( Expression expr, Expression when, Expression then, Expression defaultValue) { return new SimpleCaseExpression(expr, Arrays.asList(Tuples.pair(when, then)), defaultValue); }
289290291292293294295