Java 你做什么;。及;及;其中;代表

Java 你做什么;。及;及;其中;代表,java,Java,我无法理解以下代码: final Specifications<PaymentBatch> criteriaSpecification = where(paymentBatchesInZone(getCurrentZone())) .and(new PaymentBatchSearchFilter(paymentBatchSearchQueryDTO)); 最终规范标准规范= 其中(paymentBatchesInZone(getCurrentZo

我无法理解以下代码:

final Specifications<PaymentBatch> criteriaSpecification = 
        where(paymentBatchesInZone(getCurrentZone()))
        .and(new PaymentBatchSearchFilter(paymentBatchSearchQueryDTO));
最终规范标准规范=
其中(paymentBatchesInZone(getCurrentZone()))
.和(新PaymentBatchSearchFilter(PaymentBatchSearchQueryTo));
以及
代表什么?

这是一种称为

详情请参阅:

对函数的每次调用都返回当前对象,因此可以在不声明单独引用的情况下进行后续方法调用


因此,
where()
和()
这两种方法都是SQL语句的一部分,它们提供了创建SQL
where
语句的方法。

它只是一个方法,用于
where
返回的任何类。@blm实际上,
返回的内容…@falsarella整个表达式的结果是
返回的内容,
是关于
返回内容的方法。我本可以把我的评论说得更清楚,但我的评论就是这个意思。