Uses of Class
netkit.graph.Type

Packages that use Type
netkit.classifiers.aggregators   
netkit.graph   
 

Uses of Type in netkit.classifiers.aggregators
 

Fields in netkit.classifiers.aggregators declared as Type
protected  Type AggregatorImp.type
           
 

Methods in netkit.classifiers.aggregators that return Type
 Type AggregatorImp.getType()
          Gets the Type of the value stored in this object.
 Type Aggregator.getType()
          Gets the Type of the value stored in this object.
 

Constructors in netkit.classifiers.aggregators with parameters of type Type
AggregatorByValueImp(java.lang.String aggName, EdgeType edgeType, Attribute attribute, Type type, double value)
          Specifies the core parameters needed to instantiate an AggregatorByValue class.
AggregatorImp(java.lang.String aggName, EdgeType edgeType, Attribute attribute, Type type)
          Creates an aggregator that is not by value (it calls the more specific constructor with a 'value' of Double.NaN).
AggregatorImp(java.lang.String aggName, EdgeType edgeType, Attribute attribute, Type type, double value)
          Helper constructor for AggregatorByValueImp - an aggregator for a specific attribute value.
 

Uses of Type in netkit.graph
 

Methods in netkit.graph that return Type
 Type Attribute.getType()
          Get the type of this Attribute.
static Type Type.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Type[] Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in netkit.graph with parameters of type Type
Attribute(java.lang.String name, Type type)
          Subclasses should provide a public constructor that overrides this one.