Package org.aksw.faraday_cage.engine
Class AbstractParameterizedExecutionNode<T>
- java.lang.Object
-
- org.aksw.faraday_cage.engine.AbstractExecutionNode<T>
-
- org.aksw.faraday_cage.engine.AbstractParameterizedExecutionNode<T>
-
- All Implemented Interfaces:
ExecutionNode<T>,Parameterized,Plugin,org.pf4j.ExtensionPoint
public abstract class AbstractParameterizedExecutionNode<T> extends AbstractExecutionNode<T> implements Parameterized
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.aksw.faraday_cage.engine.ExecutionNode
ExecutionNode.DegreeBounds
-
-
Constructor Summary
Constructors Constructor Description AbstractParameterizedExecutionNode()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ValidatableParameterMapgetParameterMap()Get this instances configuration as an initializedParameterMap.protected static ModelgetValidationModelFor(Class<?> clazz)voidinitParameters(ValidatableParameterMap parameterMap)Accept an initializedParameterMapin order to configure this instance.booleanisInitialized()Get initialization status-
Methods inherited from class org.aksw.faraday_cage.engine.AbstractExecutionNode
apply, getId, getInDegree, getOutDegree, initDegrees, initPluginId, safeApply
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.aksw.faraday_cage.engine.ExecutionNode
deepCopy, getDegreeBounds
-
Methods inherited from interface org.aksw.faraday_cage.engine.Parameterized
createParameterMap
-
-
-
-
Method Detail
-
initParameters
public void initParameters(ValidatableParameterMap parameterMap)
Description copied from interface:ParameterizedAccept an initializedParameterMapin order to configure this instance.- Specified by:
initParametersin interfaceParameterized- Parameters:
parameterMap- an initializedParameterMap
-
getParameterMap
public final ValidatableParameterMap getParameterMap()
Description copied from interface:ParameterizedGet this instances configuration as an initializedParameterMap.- Specified by:
getParameterMapin interfaceParameterized- Returns:
- an initialized
ParameterMap.
-
isInitialized
public final boolean isInitialized()
Description copied from interface:PluginGet initialization status- Specified by:
isInitializedin interfaceParameterized- Specified by:
isInitializedin interfacePlugin- Overrides:
isInitializedin classAbstractExecutionNode<T>- Returns:
true, if initialized;false, else.
-
-