Example usage for org.apache.commons.collections4 Closure interface-usage

List of usage examples for org.apache.commons.collections4 Closure interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections4 Closure interface-usage.

Usage

From source file com.link_intersystems.util.graph.CycleDetector.java

/**
 * A {@link Closure} that detects cycles when iterating a {@link Node} structure
 * and throws a {@link CyclicGraphException} if a cycle is detected.
 *
 * @author Ren Link <a
 *         href="mailto:rene.link@link-intersystems.com">[rene.link@link-

From source file com.vrem.wifianalyzer.wifi.graphutils.GraphViewAdd.java

public class GraphViewAdd implements Closure<GraphView> {
    private final ViewGroup viewGroup;

    public GraphViewAdd(@NonNull ViewGroup viewGroup) {
        this.viewGroup = viewGroup;
    }