Uses of Interface
org.processmining.framework.connections.Connection
-
Packages that use Connection Package Description org.processmining.framework.connections org.processmining.framework.connections.impl org.processmining.framework.plugin org.processmining.framework.plugin.impl -
-
Uses of Connection in org.processmining.framework.connections
Methods in org.processmining.framework.connections with type parameters of type Connection Modifier and Type Method Description <T extends Connection>
TConnectionManager. addConnection(T connection)
Adds the given connection to the framework.<T extends Connection>
java.util.Collection<T>ConnectionManager. getConnections(java.lang.Class<T> connectionType, PluginContext context, java.lang.Object... objects)
Returns a collection of connections between the objects specified, such that the type of the connection is assignable from the given connectionType (unless the parameter equals null).<T extends Connection>
TConnectionManager. getFirstConnection(java.lang.Class<T> connectionType, PluginContext context, java.lang.Object... objects)
Returns a connection between the objects specified, such that the type of the connection is assignable from the given connectionType (unless the parameter equals null).Methods in org.processmining.framework.connections that return Connection Modifier and Type Method Description Connection
ConnectionManager. getConnection(ConnectionID id)
Returns the connection with the given ID. -
Uses of Connection in org.processmining.framework.connections.impl
Classes in org.processmining.framework.connections.impl that implement Connection Modifier and Type Class Description class
AbstractConnection
Note that for all implementations of Connection, it is essential to consider memory consumption.class
AbstractStrongReferencingConnection
Methods in org.processmining.framework.connections.impl with type parameters of type Connection Modifier and Type Method Description <T extends Connection>
TConnectionManagerImpl. addConnection(T connection)
<T extends Connection>
java.util.Collection<T>ConnectionManagerImpl. getConnections(java.lang.Class<T> connectionType, PluginContext context, java.lang.Object... objects)
<T extends Connection>
TConnectionManagerImpl. getFirstConnection(java.lang.Class<T> connectionType, PluginContext context, java.lang.Object... objects)
Methods in org.processmining.framework.connections.impl that return Connection Modifier and Type Method Description Connection
ConnectionManagerImpl. getConnection(ConnectionID id)
-
Uses of Connection in org.processmining.framework.plugin
Methods in org.processmining.framework.plugin with type parameters of type Connection Modifier and Type Method Description <T extends Connection>
TPluginContext. addConnection(T c)
Registers the given connection in the global context.<T,C extends Connection>
java.util.Collection<T>ObjectConstructor. tryToFindOrConstructAllObjects(java.lang.Class<T> type, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
Finds as many objects of the given type as can be found through the connections of the other given type.<T,C extends Connection>
TObjectConstructor. tryToFindOrConstructFirstNamedObject(java.lang.Class<T> type, java.lang.String name, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
Returns the first object of the given type as can be found through the connections of the other given type.<T,C extends Connection>
TObjectConstructor. tryToFindOrConstructFirstObject(java.lang.Class<T> type, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
Returns the first object of the given type as can be found through the connections of the other given type. -
Uses of Connection in org.processmining.framework.plugin.impl
Methods in org.processmining.framework.plugin.impl with type parameters of type Connection Modifier and Type Method Description <T extends Connection>
TAbstractPluginContext. addConnection(T c)
<T,C extends Connection>
java.util.Collection<T>AbstractPluginContext. tryToFindOrConstructAllObjects(java.lang.Class<T> type, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
<T,C extends Connection>
TAbstractPluginContext. tryToFindOrConstructFirstNamedObject(java.lang.Class<T> type, java.lang.String name, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
<T,C extends Connection>
TAbstractPluginContext. tryToFindOrConstructFirstObject(java.lang.Class<T> type, java.lang.Class<C> connectionType, java.lang.String role, java.lang.Object... input)
-