|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UserDataContainer.CopyAction | |
---|---|
edu.uci.ics.jung.algorithms.transformation | |
edu.uci.ics.jung.graph.decorators | Provides mechanisms for annotating nodes consistently with useful information. |
edu.uci.ics.jung.graph.impl | Implementations of the JUNG vertex, edge, and graph interfaces. |
edu.uci.ics.jung.io | Provides a set of graph file format interpreters for loading graphs from disk. |
edu.uci.ics.jung.utils | Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application. |
Uses of UserDataContainer.CopyAction in edu.uci.ics.jung.algorithms.transformation |
---|
Fields in edu.uci.ics.jung.algorithms.transformation declared as UserDataContainer.CopyAction | |
---|---|
protected UserDataContainer.CopyAction |
FoldingTransformer.copy_action
|
Methods in edu.uci.ics.jung.algorithms.transformation with parameters of type UserDataContainer.CopyAction | |
---|---|
void |
FoldingTransformer.setCopyAction(UserDataContainer.CopyAction copy_action)
Specifies the copy action used to attach data to edges. |
Uses of UserDataContainer.CopyAction in edu.uci.ics.jung.graph.decorators |
---|
Fields in edu.uci.ics.jung.graph.decorators declared as UserDataContainer.CopyAction | |
---|---|
protected UserDataContainer.CopyAction |
UserDatumNumberEdgeValue.copy_action
|
protected UserDataContainer.CopyAction |
UserDatumNumberVertexValue.copy_action
|
Methods in edu.uci.ics.jung.graph.decorators that return UserDataContainer.CopyAction | |
---|---|
UserDataContainer.CopyAction |
Decorator.getCopyAction()
Retrieves the user datum copy action that this decorator uses when setting new values |
Methods in edu.uci.ics.jung.graph.decorators with parameters of type UserDataContainer.CopyAction | |
---|---|
void |
UserDatumNumberEdgeValue.setCopyAction(UserDataContainer.CopyAction copy_action)
|
void |
UserDatumNumberVertexValue.setCopyAction(UserDataContainer.CopyAction copy_action)
|
Constructors in edu.uci.ics.jung.graph.decorators with parameters of type UserDataContainer.CopyAction | |
---|---|
Decorator(Object key,
UserDataContainer.CopyAction action)
Constructs and initializes the decorator |
|
NumericDecorator(Object key,
UserDataContainer.CopyAction copyAction)
Constructs and initializes the decorator |
|
UserDatumNumberEdgeValue(Object key,
UserDataContainer.CopyAction copy_action)
Creates an instance with the specified key and CopyAction . |
|
UserDatumNumberVertexValue(Object key,
UserDataContainer.CopyAction copy_action)
Creates an instance with the specified key and CopyAction . |
Uses of UserDataContainer.CopyAction in edu.uci.ics.jung.graph.impl |
---|
Methods in edu.uci.ics.jung.graph.impl that return UserDataContainer.CopyAction | |
---|---|
UserDataContainer.CopyAction |
AbstractHyperUnitBPG.getUserDatumCopyAction(Object key)
Deprecated. |
UserDataContainer.CopyAction |
HypergraphBPG.getUserDatumCopyAction(Object key)
Deprecated. |
Methods in edu.uci.ics.jung.graph.impl with parameters of type UserDataContainer.CopyAction | |
---|---|
void |
AbstractHyperUnitBPG.addUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
Deprecated. |
void |
HypergraphBPG.addUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
Deprecated. |
void |
AbstractHyperUnitBPG.setUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
Deprecated. |
void |
HypergraphBPG.setUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
Deprecated. |
Uses of UserDataContainer.CopyAction in edu.uci.ics.jung.io |
---|
Fields in edu.uci.ics.jung.io declared as UserDataContainer.CopyAction | |
---|---|
protected UserDataContainer.CopyAction |
HypergraphReader.copy_action
|
Methods in edu.uci.ics.jung.io with parameters of type UserDataContainer.CopyAction | |
---|---|
static int |
PartitionDecorationReader.loadCounts(Graph bg,
Reader count_reader,
Predicate partition,
Object count_key,
UserDataContainer.CopyAction copyact)
Decorates vertices in the specified partition with typed count data. |
static void |
PartitionDecorationReader.loadCounts(Graph bg,
Reader count_reader,
Predicate partition,
Object count_key,
UserDataContainer.CopyAction copyact,
int num_types)
|
Constructors in edu.uci.ics.jung.io with parameters of type UserDataContainer.CopyAction | |
---|---|
HypergraphReader(boolean as_list,
boolean edge_first,
UserDataContainer.CopyAction copy_action)
|
Uses of UserDataContainer.CopyAction in edu.uci.ics.jung.utils |
---|
Classes in edu.uci.ics.jung.utils that implement UserDataContainer.CopyAction | |
---|---|
static class |
UserDataContainer.CopyAction.Clone
Implements UserData.CLONE |
static class |
UserDataContainer.CopyAction.Remove
Implements UserData.REMOVE |
static class |
UserDataContainer.CopyAction.Shared
Implements UserData.SHARED |
Fields in edu.uci.ics.jung.utils declared as UserDataContainer.CopyAction | |
---|---|
static UserDataContainer.CopyAction |
UserData.CLONE
A CopyAction that clones UserData--that is, it uses the Java clone() call to clone the object. |
static UserDataContainer.CopyAction |
UserData.REMOVE
Causes the userdata not to be copied over, and instead returns null. |
static UserDataContainer.CopyAction |
UserData.SHARED
A CopyAction that links UserData--that is, points to the original data. |
Methods in edu.uci.ics.jung.utils that return UserDataContainer.CopyAction | |
---|---|
UserDataContainer.CopyAction |
DefaultUserData.getUserDatumCopyAction(Object key)
Returns the CopyAction associated with this key. |
UserDataContainer.CopyAction |
UnifiedUserData.getUserDatumCopyAction(Object key)
Returns the CopyAction associated with this key. |
UserDataContainer.CopyAction |
UserDataContainer.getUserDatumCopyAction(Object key)
Retrieves the CopyAction for the object stored in this object's user data repository to which key refers. |
UserDataContainer.CopyAction |
UserDataDelegate.getUserDatumCopyAction(Object key)
|
Methods in edu.uci.ics.jung.utils with parameters of type UserDataContainer.CopyAction | |
---|---|
void |
DefaultUserData.addUserDatum(Object key,
Object value,
UserDataContainer.CopyAction shared)
Adds user-level information to the node. |
void |
UnifiedUserData.addUserDatum(Object key,
Object value,
UserDataContainer.CopyAction shared)
Adds user-level information to the node. |
void |
UserDataContainer.addUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
Adds the specified data with the specified key to this object's user data repository, with the specified CopyAction. |
void |
UserDataDelegate.addUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
|
void |
DefaultUserData.setUserDatum(Object key,
Object value,
UserDataContainer.CopyAction shared)
Changes the user-level information to the object. |
void |
UnifiedUserData.setUserDatum(Object key,
Object value,
UserDataContainer.CopyAction shared)
Changes the user-level information to the object. |
void |
UserDataContainer.setUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
If key refers to an existing user datum in this object's repository, that datum is replaced by the specified datum. |
void |
UserDataDelegate.setUserDatum(Object key,
Object datum,
UserDataContainer.CopyAction copyAct)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |