Uses of Class
org.cytoscape.model.SavePolicy
-
Packages that use SavePolicy Package Description org.cytoscape.model This package has the core interfaces of network and table data structures that are foundational to Cytoscape.org.cytoscape.model.subnetwork This package contains rootnetwork and subnetwork extensions to the CyNetwork interface that provide a more complex meta-network data model. -
-
Uses of SavePolicy in org.cytoscape.model
Methods in org.cytoscape.model that return SavePolicy Modifier and Type Method Description SavePolicy
CyNetwork. getSavePolicy()
Returns how (or if) this CyNetwork should be saved.SavePolicy
CyTable. getSavePolicy()
Returns how (or if) this CyTable should be saved.static SavePolicy
SavePolicy. valueOf(String name)
Returns the enum constant of this type with the specified name.static SavePolicy[]
SavePolicy. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.cytoscape.model with parameters of type SavePolicy Modifier and Type Method Description CyNetwork
CyNetworkFactory. createNetwork(SavePolicy policy)
Returns a new, emptyCyNetwork
object.CyNetwork
CyNetworkFactory. createNetworkWithPrivateTables(SavePolicy policy)
Returns a new, emptyCyNetwork
object where the associated default tables are private.void
CyTable. setSavePolicy(SavePolicy policy)
Sets how (or if) this CyTable should be saved. -
Uses of SavePolicy in org.cytoscape.model.subnetwork
Methods in org.cytoscape.model.subnetwork with parameters of type SavePolicy Modifier and Type Method Description CySubNetwork
CyRootNetwork. addSubNetwork(Iterable<CyNode> nodes, Iterable<CyEdge> edges, SavePolicy policy)
CySubNetwork
CyRootNetwork. addSubNetwork(SavePolicy policy)
Create an emptyCySubNetwork
which can have a different save policy from that of this root network, as long as the root network's policy is notDO_NOT_SAVE
.
-