public PredicateNode()

in src/main/java/com/twitter/nodes/PredicateNode.java [45:52]


  public PredicateNode(Node<SourceType> sourceNode,
                       Predicate<SourceType> predicate,
                       @Nullable String name) {
    super(name != null ? name : String.format("Predicate[%s]", sourceNode.getName()),
        ImmutableList.<Node>of(sourceNode));
    this.sourceNode = sourceNode;
    this.predicate = Preconditions.checkNotNull(predicate);
  }