public class JIPipeDynamicParameterCollection extends Object implements JIPipeCustomParameterCollection, JIPipeValidatable, JsonDeserializable
Modifier and Type | Class and Description |
---|---|
static class |
JIPipeDynamicParameterCollection.Deserializer |
static class |
JIPipeDynamicParameterCollection.ParameterAddingEvent |
static class |
JIPipeDynamicParameterCollection.UserParameterDefinition
Parameter definition by a user
|
JIPipeParameterCollection.ParameterChangedEvent, JIPipeParameterCollection.ParameterStructureChangedEvent, JIPipeParameterCollection.ParameterUIChangedEvent
Constructor and Description |
---|
JIPipeDynamicParameterCollection() |
JIPipeDynamicParameterCollection(boolean allowUserModification)
Creates a new instance.
|
JIPipeDynamicParameterCollection(boolean allowUserModification,
Class<?>[] allowedTypes)
Creates a new instance
|
JIPipeDynamicParameterCollection(boolean allowUserModification,
Set<JIPipeParameterTypeInfo> allowedTypes)
Creates a new instance
|
JIPipeDynamicParameterCollection(JIPipeDynamicParameterCollection other)
Copies the parameters from the original
|
Modifier and Type | Method and Description |
---|---|
JIPipeMutableParameterAccess |
addParameter(JIPipeMutableParameterAccess parameterAccess)
Adds a new parameter.
|
JIPipeMutableParameterAccess |
addParameter(String key,
Class<?> fieldClass)
Adds a new parameter
|
JIPipeMutableParameterAccess |
addParameter(String key,
Class<?> fieldClass,
String name,
String description,
Annotation... annotations) |
void |
beginModificationBlock()
Halts all
ParameterStructureChangedEvent until endModificationBlock() is called. |
void |
clear()
Removes all parameters
|
boolean |
containsKey(String key)
Returns true if there is a parameter with given key
|
void |
copyTo(JIPipeDynamicParameterCollection target)
Copies the parameter configuration into the target
|
void |
endModificationBlock()
Ends a modification block started by beginModificationBlock().
|
void |
fromJson(com.fasterxml.jackson.databind.JsonNode node)
Loads the holder from JSON
|
JIPipeParameterAccess |
get(String key)
Returns the parameter with key
|
Set<Class<?>> |
getAllowedTypes() |
EventBus |
getEventBus()
Gets the event bus that posts events about the parameters
|
Function<JIPipeDynamicParameterCollection.UserParameterDefinition,JIPipeMutableParameterAccess> |
getInstanceGenerator() |
JIPipeMutableParameterAccess |
getParameter(String key)
Gets a parameter by its key
|
Map<String,JIPipeParameterAccess> |
getParameters()
Returns all parameters
Please note that those parameters must be sourced in this collection.
|
<T> T |
getValue(String key,
Class<T> klass)
Gets a parameter value
|
boolean |
isAllowUserModification() |
void |
removeParameter(String key)
Removes a parameter
|
void |
reportValidity(JIPipeIssueReport report)
Generates a validity report
|
void |
setAllowedTypes(Set<Class<?>> allowedTypes)
Sets allowed parameter types
|
void |
setAllowUserModification(boolean allowUserModification)
Enabled/disables if modification by users is allowed
|
void |
setInstanceGenerator(Function<JIPipeDynamicParameterCollection.UserParameterDefinition,JIPipeMutableParameterAccess> instanceGenerator) |
<T> boolean |
setValue(String key,
T value)
Sets a parameter value
|
boolean |
supportsAllParameterTypes() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getChildParameterCollections, getIncludeReflectionParameters
addParameterChangeListener, addParameterChangeListener, getContextActions, getParameter, getParameterAccess, isParameterUIVisible, isParameterUIVisible, setParameter, triggerParameterChange, triggerParameterStructureChange, triggerParameterUIChange
generateValidityReport
public JIPipeDynamicParameterCollection()
public JIPipeDynamicParameterCollection(boolean allowUserModification)
allowUserModification
- let user modify this collectionpublic JIPipeDynamicParameterCollection(JIPipeDynamicParameterCollection other)
other
- The originalpublic JIPipeDynamicParameterCollection(boolean allowUserModification, Set<JIPipeParameterTypeInfo> allowedTypes)
allowUserModification
- let user modify this collectionallowedTypes
- The parameter types that can be added by the user (ignored if user cannot add).public JIPipeDynamicParameterCollection(boolean allowUserModification, Class<?>[] allowedTypes)
allowUserModification
- let user modify this collectionallowedTypes
- The parameter types that can be added by the user (ignored if user cannot add).public Map<String,JIPipeParameterAccess> getParameters()
JIPipeCustomParameterCollection
getParameters
in interface JIPipeCustomParameterCollection
JIPipeParameterAccess
.getKey()public JIPipeMutableParameterAccess addParameter(JIPipeMutableParameterAccess parameterAccess)
parameterAccess
- the parameterpublic boolean supportsAllParameterTypes()
public JIPipeMutableParameterAccess addParameter(String key, Class<?> fieldClass)
key
- A unique keyfieldClass
- The parameter classpublic void clear()
public void removeParameter(String key)
key
- The parameter keypublic JIPipeMutableParameterAccess getParameter(String key)
key
- The parameter keypublic <T> T getValue(String key, Class<T> klass)
T
- The parameter typekey
- The parameter keyklass
- The returned typepublic <T> boolean setValue(String key, T value)
T
- The parameter typekey
- The parameter keyvalue
- The parameter valuepublic void setAllowedTypes(Set<Class<?>> allowedTypes)
allowedTypes
- Parameter typespublic void fromJson(com.fasterxml.jackson.databind.JsonNode node)
fromJson
in interface JsonDeserializable
node
- JSON datapublic boolean isAllowUserModification()
public void setAllowUserModification(boolean allowUserModification)
allowUserModification
- True if modification is allowedpublic EventBus getEventBus()
JIPipeParameterCollection
getEventBus
in interface JIPipeParameterCollection
JIPipeParameterCollection.ParameterChangedEvent
and JIPipeParameterCollection.ParameterStructureChangedEvent
public boolean containsKey(String key)
key
- the parameter keypublic JIPipeParameterAccess get(String key)
key
- the parameter keypublic void beginModificationBlock()
ParameterStructureChangedEvent
until endModificationBlock() is called.
Use this method for many changes at oncepublic void endModificationBlock()
ParameterStructureChangedEvent
public void copyTo(JIPipeDynamicParameterCollection target)
target
- the target configurationpublic void reportValidity(JIPipeIssueReport report)
JIPipeValidatable
reportValidity
in interface JIPipeValidatable
report
- the report to be added topublic Function<JIPipeDynamicParameterCollection.UserParameterDefinition,JIPipeMutableParameterAccess> getInstanceGenerator()
public void setInstanceGenerator(Function<JIPipeDynamicParameterCollection.UserParameterDefinition,JIPipeMutableParameterAccess> instanceGenerator)
public JIPipeMutableParameterAccess addParameter(String key, Class<?> fieldClass, String name, String description, Annotation... annotations)
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.