public class JIPipeDefaultMutableSlotConfiguration extends Object implements JIPipeMutableSlotConfiguration
Modifier and Type | Class and Description |
---|---|
static class |
JIPipeDefaultMutableSlotConfiguration.Builder
A builder for creating a configuration
|
JIPipeSlotConfiguration.Serializer, JIPipeSlotConfiguration.SlotsChangedEvent
Constructor and Description |
---|
JIPipeDefaultMutableSlotConfiguration()
Creates a new instance
|
Modifier and Type | Method and Description |
---|---|
JIPipeDataSlotInfo |
addInputSlot(String name,
String description,
Class<? extends JIPipeData> dataClass,
boolean user)
Adds a new input slot
|
JIPipeDataSlotInfo |
addOutputSlot(String name,
String description,
Class<? extends JIPipeData> dataClass,
String inherited,
boolean user)
Adds a new input slot
|
JIPipeDataSlotInfo |
addSlot(JIPipeInputSlot slot,
boolean user)
Adds an input slot from an annotation
|
JIPipeDataSlotInfo |
addSlot(JIPipeOutputSlot slot,
boolean user)
Adds an input slot from an annotation
|
JIPipeDataSlotInfo |
addSlot(String name,
JIPipeDataSlotInfo definition,
boolean user)
Adds a slots
|
boolean |
allowsInputSlots() |
boolean |
allowsOutputSlots() |
static JIPipeDefaultMutableSlotConfiguration.Builder |
builder() |
boolean |
canAddInputSlot() |
boolean |
canAddOutputSlot() |
boolean |
canCreateCompatibleInputSlot(Class<? extends JIPipeData> acceptedDataType)
Returns if an input slot with specified type can be created
|
boolean |
canCreateCompatibleOutputSlot(Class<? extends JIPipeData> acceptedDataType)
Returns if an output slot with specified type can be created
|
boolean |
canModifyInputSlots() |
boolean |
canModifyOutputSlots() |
void |
clearInputSlots(boolean user)
Removes all input slots
|
void |
clearOutputSlots(boolean user)
Removes all output slots
|
JIPipeSlotConfiguration |
duplicate()
Creates a deep copy
|
void |
fromJson(com.fasterxml.jackson.databind.JsonNode node)
Loads this configuration from JSON
|
Set<Class<? extends JIPipeData>> |
getAllowedInputSlotTypes() |
Set<Class<? extends JIPipeData>> |
getAllowedOutputSlotTypes() |
EventBus |
getEventBus() |
List<String> |
getInputSlotOrder() |
Map<String,JIPipeDataSlotInfo> |
getInputSlots() |
int |
getMaxInputSlots() |
int |
getMaxOutputSlots() |
List<String> |
getOutputSlotOrder() |
Map<String,JIPipeDataSlotInfo> |
getOutputSlots() |
static Set<Class<? extends JIPipeData>> |
getUnhiddenRegisteredDataTypes()
Returns a collection of all unhidden slot data types
|
boolean |
hasInputSlot(String name)
Returns true if there is an input slot with name
|
boolean |
hasOutputSlot(String name)
Returns true if there is an output slot with name
|
boolean |
isAllowInheritedOutputSlots() |
boolean |
isInputSlotsSealed() |
boolean |
isOutputSlotsSealed() |
void |
moveDown(String slot,
JIPipeSlotType type)
Moves the specified slot down in its order
|
void |
moveUp(String slot,
JIPipeSlotType type)
Moves the specified slot up in its order
|
void |
removeInputSlot(String name,
boolean user)
Removes the slot with given name
|
void |
removeOutputSlot(String name,
boolean user)
Removes the slot with given name
|
void |
setAllowedInputSlotTypes(Set<Class<? extends JIPipeData>> allowedInputSlotTypes) |
void |
setAllowedOutputSlotTypes(Set<Class<? extends JIPipeData>> allowedOutputSlotTypes) |
void |
setAllowInheritedOutputSlots(boolean allowInheritedOutputSlots)
Enables/Disables if output slots can inherit from input slots
|
void |
setInputSealed(boolean b)
Seals/Unseals input slots
|
void |
setMaxInputSlots(int maxInputSlots)
Sets maximum number of input slots
|
void |
setMaxOutputSlots(int maxOutputSlots)
Sets maximum number of output slots
|
void |
setOutputSealed(boolean b)
Seals/Unseals output slots
|
void |
setTo(JIPipeSlotConfiguration configuration)
Makes this slot configuration equivalent to the provided one
|
void |
toJson(com.fasterxml.jackson.core.JsonGenerator jsonGenerator)
Saves this configuration to JSON.
|
void |
trySetInputSlotOrder(List<String> newOrder)
Sets the input slot order.
|
void |
trySetOutputSlotOrder(List<String> newOrder)
Sets the output slot order.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addSlot, canRemoveInputSlot, canRemoveOutputSlot
public JIPipeDefaultMutableSlotConfiguration()
public static Set<Class<? extends JIPipeData>> getUnhiddenRegisteredDataTypes()
public static JIPipeDefaultMutableSlotConfiguration.Builder builder()
public boolean hasInputSlot(String name)
hasInputSlot
in interface JIPipeSlotConfiguration
name
- The namepublic boolean hasOutputSlot(String name)
hasOutputSlot
in interface JIPipeSlotConfiguration
name
- The namepublic JIPipeDataSlotInfo addSlot(String name, JIPipeDataSlotInfo definition, boolean user)
addSlot
in interface JIPipeMutableSlotConfiguration
name
- Unique slot namedefinition
- Defines the slotuser
- if the change was triggered by a user. If false, checks for slot sealing, types, etc. do not applypublic void toJson(com.fasterxml.jackson.core.JsonGenerator jsonGenerator) throws IOException, com.fasterxml.jackson.core.JsonProcessingException
JIPipeSlotConfiguration
toJson
in interface JIPipeSlotConfiguration
jsonGenerator
- the Json generatorcom.fasterxml.jackson.core.JsonProcessingException
- thrown by JsonIOException
public void removeInputSlot(String name, boolean user)
removeInputSlot
in interface JIPipeMutableSlotConfiguration
name
- Slot nameuser
- if the change was triggered by a user. If false, checks for slot modification, counts, etc. do not apply.public JIPipeDataSlotInfo addSlot(JIPipeInputSlot slot, boolean user)
slot
- the slot annotationuser
- if the change was triggered by a user. If false, checks for slot modification, counts, etc. do not apply.public JIPipeDataSlotInfo addSlot(JIPipeOutputSlot slot, boolean user)
slot
- the slot annotationuser
- if the change was triggered by a user. If false, checks for slot modification, counts, etc. do not apply.public JIPipeDataSlotInfo addInputSlot(String name, String description, Class<? extends JIPipeData> dataClass, boolean user)
name
- the namedescription
- the descriptiondataClass
- the data typeuser
- if the user triggered thispublic JIPipeDataSlotInfo addOutputSlot(String name, String description, Class<? extends JIPipeData> dataClass, String inherited, boolean user)
name
- the namedescription
- the descriptiondataClass
- the data typeinherited
- inherited slot can be null or '*' or the slot nameuser
- if the user triggered thispublic void removeOutputSlot(String name, boolean user)
removeOutputSlot
in interface JIPipeMutableSlotConfiguration
name
- Slot nameuser
- if the change was triggered by a user. If false, checks for slot modification, counts, etc. do not apply.public Map<String,JIPipeDataSlotInfo> getInputSlots()
getInputSlots
in interface JIPipeSlotConfiguration
public Map<String,JIPipeDataSlotInfo> getOutputSlots()
getOutputSlots
in interface JIPipeSlotConfiguration
public JIPipeSlotConfiguration duplicate()
JIPipeSlotConfiguration
duplicate
in interface JIPipeSlotConfiguration
public List<String> getInputSlotOrder()
getInputSlotOrder
in interface JIPipeSlotConfiguration
public List<String> getOutputSlotOrder()
getOutputSlotOrder
in interface JIPipeSlotConfiguration
public void setTo(JIPipeSlotConfiguration configuration)
JIPipeSlotConfiguration
setTo
in interface JIPipeSlotConfiguration
configuration
- the configurationpublic void fromJson(com.fasterxml.jackson.databind.JsonNode node)
JIPipeSlotConfiguration
fromJson
in interface JIPipeSlotConfiguration
node
- JSON datapublic void moveUp(String slot, JIPipeSlotType type)
moveUp
in interface JIPipeMutableSlotConfiguration
slot
- Slot nametype
- the slot typepublic void moveDown(String slot, JIPipeSlotType type)
moveDown
in interface JIPipeMutableSlotConfiguration
slot
- Slot nametype
- the slot typepublic void trySetInputSlotOrder(List<String> newOrder)
newOrder
- the orderpublic void trySetOutputSlotOrder(List<String> newOrder)
newOrder
- the orderpublic boolean allowsInputSlots()
allowsInputSlots
in interface JIPipeMutableSlotConfiguration
public boolean allowsOutputSlots()
allowsOutputSlots
in interface JIPipeMutableSlotConfiguration
public boolean isInputSlotsSealed()
isInputSlotsSealed
in interface JIPipeMutableSlotConfiguration
public boolean isOutputSlotsSealed()
isOutputSlotsSealed
in interface JIPipeMutableSlotConfiguration
public boolean canModifyInputSlots()
canModifyInputSlots
in interface JIPipeMutableSlotConfiguration
public boolean canModifyOutputSlots()
canModifyOutputSlots
in interface JIPipeMutableSlotConfiguration
public Set<Class<? extends JIPipeData>> getAllowedInputSlotTypes()
getAllowedInputSlotTypes
in interface JIPipeMutableSlotConfiguration
public void setAllowedInputSlotTypes(Set<Class<? extends JIPipeData>> allowedInputSlotTypes)
public Set<Class<? extends JIPipeData>> getAllowedOutputSlotTypes()
getAllowedOutputSlotTypes
in interface JIPipeMutableSlotConfiguration
public void setAllowedOutputSlotTypes(Set<Class<? extends JIPipeData>> allowedOutputSlotTypes)
public void setInputSealed(boolean b)
b
- Seals/Unseals input slotspublic void setOutputSealed(boolean b)
b
- Seals/Unseals output slotspublic boolean canCreateCompatibleInputSlot(Class<? extends JIPipeData> acceptedDataType)
canCreateCompatibleInputSlot
in interface JIPipeMutableSlotConfiguration
acceptedDataType
- Slot data typepublic boolean canCreateCompatibleOutputSlot(Class<? extends JIPipeData> acceptedDataType)
canCreateCompatibleOutputSlot
in interface JIPipeMutableSlotConfiguration
acceptedDataType
- Slot data typepublic int getMaxInputSlots()
public void setMaxInputSlots(int maxInputSlots)
maxInputSlots
- Numberpublic int getMaxOutputSlots()
public void setMaxOutputSlots(int maxOutputSlots)
maxOutputSlots
- Numberpublic boolean canAddInputSlot()
canAddInputSlot
in interface JIPipeMutableSlotConfiguration
public boolean canAddOutputSlot()
canAddOutputSlot
in interface JIPipeMutableSlotConfiguration
public void clearInputSlots(boolean user)
user
- if done by a userpublic void clearOutputSlots(boolean user)
user
- if done by a userpublic boolean isAllowInheritedOutputSlots()
isAllowInheritedOutputSlots
in interface JIPipeMutableSlotConfiguration
public void setAllowInheritedOutputSlots(boolean allowInheritedOutputSlots)
allowInheritedOutputSlots
- Enables/Disables if output slots can inherit from input slotspublic EventBus getEventBus()
getEventBus
in interface JIPipeSlotConfiguration
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.