Uses of Interface
org.cytoscape.group.data.Aggregator
Package
Description
This package provides an API for creating and managing
groups in Cytoscape.
An api for configuring
CyGroup
s.-
Uses of Aggregator in org.cytoscape.group
Modifier and TypeMethodDescriptionAggregator<?>
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).Modifier and TypeMethodDescriptionvoid
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
Modifier and TypeMethodDescriptionList<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.Modifier and TypeMethodDescriptionvoid
CyGroupAggregationManager.addAggregator
(Aggregator<?> aggregator) Add a new aggregator to the available aggregators.void
CyGroupAggregationManager.removeAggregator
(Aggregator<?> aggregator) Remove an aggregator from the available aggregators.