Uses of Interface
org.camunda.bpm.engine.variable.value.builder.FileValueBuilder
-
Packages that use FileValueBuilder Package Description org.camunda.bpm.engine.variable org.camunda.bpm.engine.variable.impl.value.builder org.camunda.bpm.engine.variable.value.builder -
-
Uses of FileValueBuilder in org.camunda.bpm.engine.variable
Methods in org.camunda.bpm.engine.variable that return FileValueBuilder Modifier and Type Method Description static FileValueBuilder
Variables. fileValue(String filename)
Returns a builder to create a newFileValue
with the givenfilename
.static FileValueBuilder
Variables. fileValue(String filename, boolean isTransient)
Returns a builder to create a newFileValue
with the givenfilename
. -
Uses of FileValueBuilder in org.camunda.bpm.engine.variable.impl.value.builder
Classes in org.camunda.bpm.engine.variable.impl.value.builder that implement FileValueBuilder Modifier and Type Class Description class
FileValueBuilderImpl
Methods in org.camunda.bpm.engine.variable.impl.value.builder that return FileValueBuilder Modifier and Type Method Description FileValueBuilder
FileValueBuilderImpl. encoding(String encoding)
FileValueBuilder
FileValueBuilderImpl. encoding(Charset encoding)
FileValueBuilder
FileValueBuilderImpl. file(byte[] bytes)
FileValueBuilder
FileValueBuilderImpl. file(File file)
FileValueBuilder
FileValueBuilderImpl. file(InputStream stream)
FileValueBuilder
FileValueBuilderImpl. mimeType(String mimeType)
FileValueBuilder
FileValueBuilderImpl. setTransient(boolean isTransient)
-
Uses of FileValueBuilder in org.camunda.bpm.engine.variable.value.builder
Methods in org.camunda.bpm.engine.variable.value.builder that return FileValueBuilder Modifier and Type Method Description FileValueBuilder
FileValueBuilder. encoding(String encoding)
Sets the encoding for the file in the value infos (optional).FileValueBuilder
FileValueBuilder. encoding(Charset encoding)
Sets the encoding for the file in the value infos (optional).FileValueBuilder
FileValueBuilder. file(byte[] bytes)
Sets the value to the specifiedByte
arrayFileValueBuilder
FileValueBuilder. file(File file)
Sets the value to the specifiedFile
.FileValueBuilder
FileValueBuilder. file(InputStream stream)
Sets the value to the specifiedInputStream
.FileValueBuilder
FileValueBuilder. mimeType(String mimeType)
Saves the MIME type of a file in the value infos.
-