Uses of Interface
org.cytoscape.model.CyColumn
-
Packages that use CyColumn Package Description org.cytoscape.application.swing This package defines the various interfaces, abstract classes, and enums that represent the Cytoscape Swing Application API.org.cytoscape.group This package provides an API for creating and managing groups in Cytoscape.org.cytoscape.group.data An api for configuringCyGroups.org.cytoscape.model This package has the core interfaces of network and table data structures that are foundational to Cytoscape.org.cytoscape.task This package provides base classes for common task factory types as well as their associated task types found in Cytoscape.org.cytoscape.task.edit This package include a set of task factory interfaces that allow the modification or editing of various objects within Cytoscape.org.cytoscape.util.json -
-
Uses of CyColumn in org.cytoscape.application.swing
Methods in org.cytoscape.application.swing that return CyColumn Modifier and Type Method Description CyColumnCyColumnComboBox. getSelectedItem()Override getSelectedItem() and use covariant return type to change return type to CyColumn.Method parameters in org.cytoscape.application.swing with type arguments of type CyColumn Modifier and Type Method Description voidCyColumnSelector. update(Collection<CyColumn> columns, Collection<String> selectedColumnNames)Updates the control to display the given CyColumn objects.Constructor parameters in org.cytoscape.application.swing with type arguments of type CyColumn Constructor Description CyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns)Creates a CyColumnComboBox with all entries enabled.CyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns, Predicate<CyColumn> enabledPredicate)Creates a CyColumnComboBox.CyColumnComboBox(CyColumnPresentationManager columnPresentationManager, Collection<CyColumn> columns, Predicate<CyColumn> enabledPredicate)Creates a CyColumnComboBox. -
Uses of CyColumn in org.cytoscape.group
Methods in org.cytoscape.group with parameters of type CyColumn Modifier and Type Method Description Aggregator<?>CyGroupSettingsManager. getAggregator(CyGroup group, CyColumn column)Get theAggregatorthat will be used to aggregate the values in a specificCyColumnfor all of the nodes in a group onto the corresponding column in the group node.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).voidCyGroupSettingsManager. setOverrideAggregation(CyGroup group, CyColumn column, Aggregator<?> agg)set the override aggregation setting for a column in a group (if any).voidCyGroupSettingsManager. setOverrideAggregation(CyColumn column, Aggregator<?> agg)set the override aggregation setting for a column (if any). -
Uses of CyColumn in org.cytoscape.group.data
Methods in org.cytoscape.group.data with parameters of type CyColumn Modifier and Type Method Description <T> TAggregator. aggregate(CyTable table, CyGroup group, CyColumn column)Aggregate the column for the members of the specified group into the group. -
Uses of CyColumn in org.cytoscape.model
Methods in org.cytoscape.model that return CyColumn Modifier and Type Method Description CyColumnCyTable. getColumn(String fullyQualifiedName)Returns the column with the specified fully-qualified name.default CyColumnCyTable. getColumn(String namespace, String name)Returns the column for the specified name in the specified namespace.CyColumnCyTable. getPrimaryKey()Returns the column type of the primary key for this table.Methods in org.cytoscape.model that return types with arguments of type CyColumn Modifier and Type Method Description Collection<CyColumn>CyTable. getColumns()Returns the column types for all columns in this table.default Collection<CyColumn>CyTable. getColumns(String namespace)Returns the column types for all columns in this table in the given namespace. -
Uses of CyColumn in org.cytoscape.task
Fields in org.cytoscape.task declared as CyColumn Modifier and Type Field Description protected CyColumnAbstractTableCellTask. columnprotected CyColumnAbstractTableColumnTask. columnTheCyColumnthat descendants will operate on.Methods in org.cytoscape.task with parameters of type CyColumn Modifier and Type Method Description TaskIteratorTableCellTaskFactory. createTaskIterator(CyColumn column, Object primaryKeyValue)Used to provision this factory with aCyColumnand a primary key that will be used to create tasks.TaskIteratorTableColumnTaskFactory. createTaskIterator(CyColumn column)Used to provision this factory with aCyColumnthat will be used to create tasks.booleanAbstractTableCellTaskFactory. isReady(CyColumn column, Object primaryKeyValue)Returns true if the supplied column and value are not null.booleanAbstractTableColumnTaskFactory. isReady(CyColumn column)Returns true if the supplied column is not null.booleanTableCellTaskFactory. isReady(CyColumn column, Object primaryKeyValue)Returns true if this task factory is ready to produce a TaskIterator.booleanTableColumnTaskFactory. isReady(CyColumn column)Returns true if this task factory is ready to produce a TaskIterator.Constructors in org.cytoscape.task with parameters of type CyColumn Constructor Description AbstractTableCellTask(CyColumn column, Object primaryKeyValue)Initializes a Task that needs to operate on a CyTable cell entry.AbstractTableColumnTask(CyColumn column)Initializes a Task that needs to operate on a CyTable column. -
Uses of CyColumn in org.cytoscape.task.edit
Methods in org.cytoscape.task.edit with parameters of type CyColumn Modifier and Type Method Description TaskIteratorImportDataTableTaskFactory. createTaskIterator(CyTable globalTable, boolean selectedNetworksOnly, boolean loadToUnassignedTable, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)Creates a task iterator for importing a table data in a network data table.TaskIteratorJoinTablesTaskTaskFactory. createTaskIterator(CyTable globalTable, boolean selectedNetworksOnly, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)TaskIteratorMergeTablesTaskFactory. createTaskIterator(CyTable sourceTable, CyTable targetTable, List<String> sourceColumnsList, String sourceKeyColumn, boolean mergeColumnVirtual, boolean mapToNetworks, boolean selectedNetworksOnly, List<CyNetwork> networkList, CyRootNetwork rootNetwork, CyColumn targetJoinColumn, Class<? extends CyIdentifiable> tableType)Creates a task iterator for merging two data tables.TaskIteratorRenameColumnTaskFactory. createTaskIterator(CyColumn column, String newColumnName)Create a task iterator for renaming a selected column. -
Uses of CyColumn in org.cytoscape.util.json
Methods in org.cytoscape.util.json with parameters of type CyColumn Modifier and Type Method Description StringCyJSONUtil. toJson(CyColumn cyColumn, boolean includeDefinition, boolean includeValues)Returns a JSON representation of CyColumn.StringCyJSONUtil. toJson(CyNetwork network, CyEdge cyEdge, CyColumn... columns)Returns a JSON representation of a single CyEdge and its relevant data.StringCyJSONUtil. toJson(CyNetwork network, CyNode cyNode, CyColumn... columns)Returns a JSON representation of a single CyNode and its relevant data.StringCyJSONUtil. toJson(CyRow cyRow, CyColumn... columns)Returns a JSON representation of a table row.Method parameters in org.cytoscape.util.json with type arguments of type CyColumn Modifier and Type Method Description StringCyJSONUtil. cyColumnsToJson(Collection<CyColumn> collection)Returns a list of references (via column name) for a collection of CyColumn.
-