Example usage for com.google.common.graph Graph interface-usage

List of usage examples for com.google.common.graph Graph interface-usage

Introduction

In this page you can find the example usage for com.google.common.graph Graph interface-usage.

Usage

From source file edu.uci.ics.jung.graph.CTree.java

/** A subtype of Graph<N> that is a directed rooted tree. */
public interface CTree<N> extends BaseTree<N>, Graph<N> {

    /** Returns {@code true}; trees are always directed (away from the root). */
    @Override
    public boolean isDirected();