类 Projection

java.lang.Object
cn.taketoday.expression.spel.ast.SpelNodeImpl
cn.taketoday.expression.spel.ast.Projection
所有已实现的接口:
Opcodes, SpelNode

public class Projection extends SpelNodeImpl
Represents projection, where a given operation is performed on all elements in some input sequence, returning a new sequence of the same size.

For example: {1,2,3,4,5,6,7,8,9,10}.![#isEven(#this)] evaluates to [n, y, n, y, n, y, n, y, n, y].

从以下版本开始:
4.0
作者:
Andy Clement, Mark Fisher, Juergen Hoeller, Harry Yang