org.hamcrest.Matchers#emptyIterable ( )源码实例Demo

下面列出了org.hamcrest.Matchers#emptyIterable ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: beam   文件: ExecutableStageMatcher.java
public static ExecutableStageMatcher withInput(String inputId) {
  return new ExecutableStageMatcher(
      inputId, ImmutableList.of(), Matchers.emptyIterable(), ImmutableList.of());
}
 
源代码2 项目: beam   文件: ExecutableStageMatcher.java
public ExecutableStageMatcher withNoOutputs() {
  return new ExecutableStageMatcher(
      inputPCollectionId, sideInputIds, Matchers.emptyIterable(), fusedTransforms);
}