Uses of Interface
com.google.common.graph.SuccessorsFunction
-
Packages that use SuccessorsFunction Package Description com.google.common.graph An API for representing graph (node and edge) data.com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files. -
-
Uses of SuccessorsFunction in com.google.common.graph
Subinterfaces of SuccessorsFunction in com.google.common.graph Modifier and Type Interface Description (package private) interfaceBaseGraph<N>A non-public interface for the methods shared betweenGraphandValueGraph.interfaceGraph<N>An interface for graph-structured data, whose edges are anonymous entities with no identity or information of their own.interfaceMutableGraph<N>A subinterface ofGraphwhich adds mutation methods.interfaceMutableNetwork<N,E>A subinterface ofNetworkwhich adds mutation methods.interfaceMutableValueGraph<N,V>A subinterface ofValueGraphwhich adds mutation methods.interfaceNetwork<N,E>An interface for graph-structured data, whose edges are unique objects.interfaceValueGraph<N,V>An interface for graph-structured data, whose edges have associated non-unique values.Classes in com.google.common.graph that implement SuccessorsFunction Modifier and Type Class Description (package private) classAbstractBaseGraph<N>This class provides a skeletal implementation ofBaseGraph.classAbstractGraph<N>This class provides a skeletal implementation ofGraph.classAbstractNetwork<N,E>This class provides a skeletal implementation ofNetwork.classAbstractValueGraph<N,V>This class provides a skeletal implementation ofValueGraph.(package private) classConfigurableMutableGraph<N>Configurable implementation ofMutableGraphthat supports both directed and undirected graphs.(package private) classConfigurableMutableNetwork<N,E>Configurable implementation ofMutableNetworkthat supports both directed and undirected graphs.(package private) classConfigurableMutableValueGraph<N,V>Configurable implementation ofMutableValueGraphthat supports both directed and undirected graphs.(package private) classConfigurableNetwork<N,E>Configurable implementation ofNetworkthat supports the options supplied byNetworkBuilder.(package private) classConfigurableValueGraph<N,V>Configurable implementation ofValueGraphthat supports the options supplied byAbstractGraphBuilder.(package private) classForwardingGraph<N>(package private) classForwardingNetwork<N,E>A class to allowNetworkimplementations to be backed by a provided delegate.(package private) classForwardingValueGraph<N,V>A class to allowValueGraphimplementations to be backed by a provided delegate.private static classGraphs.TransposedGraph<N>private static classGraphs.TransposedNetwork<N,E>private static classGraphs.TransposedValueGraph<N,V>classImmutableGraph<N>AGraphwhose elements and structural relationships will never change.classImmutableNetwork<N,E>ANetworkwhose elements and structural relationships will never change.classImmutableValueGraph<N,V>AValueGraphwhose elements and structural relationships will never change.Fields in com.google.common.graph declared as SuccessorsFunction Modifier and Type Field Description private SuccessorsFunction<N>Traverser.GraphTraverser. graphprivate SuccessorsFunction<N>Traverser.TreeTraverser. treeMethods in com.google.common.graph with parameters of type SuccessorsFunction Modifier and Type Method Description static <N> Traverser<N>Traverser. forGraph(SuccessorsFunction<N> graph)Creates a new traverser for the given generalgraph.static <N> Traverser<N>Traverser. forTree(SuccessorsFunction<N> tree)Creates a new traverser for a directed acyclic graph that has at most one path from the start node(s) to any node reachable from the start node(s), and has no paths from any start node to any other start node, such as a tree or forest.Constructors in com.google.common.graph with parameters of type SuccessorsFunction Constructor Description GraphTraverser(SuccessorsFunction<N> graph)TreeTraverser(SuccessorsFunction<N> tree) -
Uses of SuccessorsFunction in com.google.common.io
Fields in com.google.common.io declared as SuccessorsFunction Modifier and Type Field Description private static SuccessorsFunction<java.io.File>Files. FILE_TREEprivate static SuccessorsFunction<java.nio.file.Path>MoreFiles. FILE_TREE
-