Uses of Interface
edu.uci.ics.jung.graph.decorators.NumberVertexValue

Packages that use NumberVertexValue
edu.uci.ics.jung.algorithms.importance Provides a set of algorithms for computing the importance of each node (or edge) in a graph relative to all others (or, for the algorithms that inherit from RelativeAuthorityRanker, relative to a specified subset of elements).  
edu.uci.ics.jung.graph.decorators Provides mechanisms for annotating nodes consistently with useful information.  
edu.uci.ics.jung.utils Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application. 
samples.graph Provides sample graph code that may be of interest.  
 

Uses of NumberVertexValue in edu.uci.ics.jung.algorithms.importance
 

Fields in edu.uci.ics.jung.algorithms.importance declared as NumberVertexValue
protected  NumberVertexValue VoltageRanker.voltages
           
 

Constructors in edu.uci.ics.jung.algorithms.importance with parameters of type NumberVertexValue
VoltageRanker(NumberEdgeValue edge_weights, NumberVertexValue voltages, int num_iterations, double convergence_threshold)
          Creates an instance of VoltageRanker which uses the edge weights specified by edge_weights, and which stores the voltages (ranks) as specified by voltages.
VoltageRanker(NumberVertexValue voltages, int num_iterations, double threshold)
          Creates an instance of VoltageRanker which treats the edges as though they were unweighted, and which stores the voltages (ranks) as specified by voltages.
 

Uses of NumberVertexValue in edu.uci.ics.jung.graph.decorators
 

Classes in edu.uci.ics.jung.graph.decorators that implement NumberVertexValue
 class MapNumberVertexValue
          A simple implementation of NumberVertexValue backed by a Map.
 class UserDatumNumberVertexValue
           
 

Fields in edu.uci.ics.jung.graph.decorators declared as NumberVertexValue
protected  NumberVertexValue InterpolatingVertexSizeFunction.nvv
           
protected  NumberVertexValue NumberVertexValueStringer.nvv
           
 

Methods in edu.uci.ics.jung.graph.decorators with parameters of type NumberVertexValue
 void InterpolatingVertexSizeFunction.setNumberVertexValue(NumberVertexValue nvv)
           
 

Constructors in edu.uci.ics.jung.graph.decorators with parameters of type NumberVertexValue
InterpolatingVertexSizeFunction(NumberVertexValue nvv, int min_size, int max_size)
           
NumberVertexValueStringer(NumberVertexValue nev)
           
 

Uses of NumberVertexValue in edu.uci.ics.jung.utils
 

Methods in edu.uci.ics.jung.utils with parameters of type NumberVertexValue
static void GraphUtils.copyValues(ArchetypeGraph g, NumberVertexValue source, NumberVertexValue dest)
          Copies, for each vertex v in g, source's value to dest.
 

Uses of NumberVertexValue in samples.graph
 

Fields in samples.graph declared as NumberVertexValue
protected  NumberVertexValue PluggableRendererDemo.voltages
           
protected  NumberVertexValue PluggableRendererDemo.transparency