Uses of Interface
org.cytoscape.group.data.Aggregator
-
Packages that use Aggregator Package Description org.cytoscape.group This package provides an API for creating and managing groups in Cytoscape.org.cytoscape.group.data An api for configuringCyGroup
s. -
-
Uses of Aggregator in org.cytoscape.group
Methods in org.cytoscape.group that return Aggregator Modifier and Type Method Description Aggregator<?>
CyGroupSettingsManager. getAggregator(CyGroup group, CyColumn column)
Get theAggregator
that will be used to aggregate the values in a specificCyColumn
for all of the nodes in a group onto the corresponding column in the group node.Aggregator<?>
CyGroupSettingsManager. getDefaultAggregation(Class<?> ovClass)
Get the defaultAggregator
for a specific column type as expressed as a javaClass
.Aggregator<?>
CyGroupSettingsManager. getDefaultAggregation(CyGroup group, Class<?> ovClass)
Get theAggregator
for a specific column type as expressed as a javaClass
that will be used in the specifiedCyGroup
.Aggregator<?>
CyGroupSettingsManager. getDefaultListAggregation(Class<?> ovClass)
Get the defaultAggregator
for a specific List column type as expressed as a javaClass
.Aggregator<?>
CyGroupSettingsManager. getDefaultListAggregation(CyGroup group, Class<?> ovClass)
Get theAggregator
for a specific List column type as expressed as a javaClass
that will be used in the specifiedCyGroup
.Aggregator<?>
CyGroupSettingsManager. getOverrideAggregation(CyGroup group, CyColumn column)
Get the override aggregation setting for a column (if any) in a specific group.Aggregator<?>
CyGroupSettingsManager. getOverrideAggregation(CyColumn column)
Get the override aggregation setting for a column (if any).Methods in org.cytoscape.group with parameters of type Aggregator Modifier and Type Method Description void
CyGroupSettingsManager. setDefaultAggregation(Class<?> ovClass, Aggregator<?> agg)
Set the defaultAggregator
for a specific column type as expressed as a javaClass
.void
CyGroupSettingsManager. setDefaultAggregation(CyGroup group, Class<?> ovClass, Aggregator<?> agg)
Set theAggregator
for a specific column type as expressed as a javaClass
that will be used in the specifiedCyGroup
.void
CyGroupSettingsManager. setDefaultListAggregation(Class<?> ovClass, Aggregator<?> agg)
Set the defaultAggregator
for a specific List column type as expressed as a javaClass
.void
CyGroupSettingsManager. setDefaultListAggregation(CyGroup group, Class<?> ovClass, Aggregator<?> agg)
Set theAggregator
for a specific List column type as expressed as a javaClass
that will be used in the specifiedCyGroup
.void
CyGroupSettingsManager. setOverrideAggregation(CyGroup group, CyColumn column, Aggregator<?> agg)
set the override aggregation setting for a column in a group (if any).void
CyGroupSettingsManager. setOverrideAggregation(CyColumn column, Aggregator<?> agg)
set the override aggregation setting for a column (if any). -
Uses of Aggregator in org.cytoscape.group.data
Methods in org.cytoscape.group.data that return types with arguments of type Aggregator Modifier and Type Method Description List<Aggregator<?>>
CyGroupAggregationManager. getAggregators()
Get the list of aggregators.List<Aggregator<?>>
CyGroupAggregationManager. getAggregators(Class<?> type)
Get the list of aggregators for a particular Class.List<Aggregator<?>>
CyGroupAggregationManager. getListAggregators()
Get the list of aggregators for List columns.List<Aggregator<?>>
CyGroupAggregationManager. getListAggregators(Class<?> type)
Get the list of List aggregators for a particular Class.Methods in org.cytoscape.group.data with parameters of type Aggregator Modifier and Type Method Description void
CyGroupAggregationManager. addAggregator(Aggregator<?> aggregator)
Add a new aggregator to the available aggregators.void
CyGroupAggregationManager. removeAggregator(Aggregator<?> aggregator)
Remove an aggregator from the available aggregators.
-