Uses of Enum Class
edu.uci.ics.jung.algorithms.filters.KNeighborhoodFilter.EdgeType
Packages that use KNeighborhoodFilter.EdgeType
Package
Description
Filtering mechanisms that produce subgraphs of an original graph.
-
Uses of KNeighborhoodFilter.EdgeType in edu.uci.ics.jung.algorithms.filters
Subclasses with type arguments of type KNeighborhoodFilter.EdgeType in edu.uci.ics.jung.algorithms.filtersModifier and TypeClassDescriptionstatic enumThe type of edge to follow for defining the neighborhood.Fields in edu.uci.ics.jung.algorithms.filters declared as KNeighborhoodFilter.EdgeTypeModifier and TypeFieldDescriptionprivate KNeighborhoodFilter.EdgeTypeKNeighborhoodFilter.edgeTypeMethods in edu.uci.ics.jung.algorithms.filters that return KNeighborhoodFilter.EdgeTypeModifier and TypeMethodDescriptionstatic KNeighborhoodFilter.EdgeTypeReturns the enum constant of this class with the specified name.static KNeighborhoodFilter.EdgeType[]KNeighborhoodFilter.EdgeType.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in edu.uci.ics.jung.algorithms.filters with parameters of type KNeighborhoodFilter.EdgeTypeModifierConstructorDescriptionKNeighborhoodFilter(Set<V> rootNodes, int radiusK, KNeighborhoodFilter.EdgeType edgeType) Constructs a new instance of the filter.KNeighborhoodFilter(V rootNode, int radiusK, KNeighborhoodFilter.EdgeType edgeType) Constructs a new instance of the filter.