Uses of Interface
de.xima.fc.interfaces.workflow.value.IUnionValueBuilder
-
Packages that use IUnionValueBuilder Package Description de.xima.fc.interfaces.workflow.params de.xima.fc.interfaces.workflow.value de.xima.fc.mdl.workflow -
-
Uses of IUnionValueBuilder in de.xima.fc.interfaces.workflow.params
Methods in de.xima.fc.interfaces.workflow.params that return types with arguments of type IUnionValueBuilder Modifier and Type Method Description Consumer<IUnionValueBuilder<String>>
IWorkflowSoftErrorDescriptor. getErrorValue()
Method parameters in de.xima.fc.interfaces.workflow.params with type arguments of type IUnionValueBuilder Modifier and Type Method Description INodeThrewExceptionBuilder
INodeThrewExceptionBuilder. error(Consumer<IUnionValueBuilder<String>> errorValue)
Sets (replaces) the error type and value describing the exception in more detail.void
INodeExecutionParams. softError(String message, Throwable cause, Consumer<IUnionValueBuilder<String>> errorValue)
Adds a soft error to the list of soft errors.TBuilder
ISuccessResultBuilder. softError(String message, Throwable cause, Consumer<IUnionValueBuilder<String>> errorValue)
Adds a soft error to the list of soft errors. -
Uses of IUnionValueBuilder in de.xima.fc.interfaces.workflow.value
Methods in de.xima.fc.interfaces.workflow.value that return IUnionValueBuilder Modifier and Type Method Description default IUnionValueBuilder<D>
IUnionValueBuilder. asThis()
default IUnionValueBuilder<?>
IValueBuilder. asUnion()
default IUnionValueBuilder<?>
IValueConfigurator. asUnion()
Casts this builder to a union value builder.default IUnionValueBuilder<D>
IUnionValueBuilder. value(IDiscriminatedUnionMember<D,?> value)
Sets the value of the union to the given member.IUnionValueBuilder<D>
IUnionValueBuilder. value(D discriminator, IValueCreator creator)
Sets the value of the union at the given member discriminator to the given value.default IUnionValueBuilder<D>
IUnionValueBuilder. value(D discriminator, Class<?> memberClass, IValueCreator creator)
Deprecated.Usevalue(Object, IValueCreator)
, possibly in combination withIValueBuilder.whenString(Consumer)
etc.default IUnionValueBuilder<D>
IUnionValueBuilder. value(D discriminator, Object value)
Sets the value of the union at the given member discriminator to the given value.Method parameters in de.xima.fc.interfaces.workflow.value with type arguments of type IUnionValueBuilder Modifier and Type Method Description default Builder
ISubTypeValueBuilder. whenUnion(Consumer<? super IUnionValueBuilder<?>> action)
default <D> IValueConfigurator
IValueBuilder. whenUnion(Class<D> discriminatorClass, Consumer<? super IUnionValueBuilder<D>> action)
default IValueBuilder<T>
IValueBuilder. whenUnion(Consumer<? super IUnionValueBuilder<?>> action)
default <D> IValueConfigurator
IValueConfigurator. whenUnion(Class<D> discriminatorClass, Consumer<? super IUnionValueBuilder<D>> action)
Execute the given action with this builder as a union value builder, if this builder is of that type.default IValueConfigurator
IValueConfigurator. whenUnion(Consumer<? super IUnionValueBuilder<?>> action)
Execute the given action with this builder as a union value builder, if this builder is of that type. -
Uses of IUnionValueBuilder in de.xima.fc.mdl.workflow
Methods in de.xima.fc.mdl.workflow that return types with arguments of type IUnionValueBuilder Modifier and Type Method Description Consumer<IUnionValueBuilder<String>>
WorkflowSoftErrorDescriptor. getErrorValue()
Constructor parameters in de.xima.fc.mdl.workflow with type arguments of type IUnionValueBuilder Constructor Description WorkflowSoftErrorDescriptor(String message, Throwable cause, Consumer<IUnionValueBuilder<String>> errorValue)
-