Interface FileValue
- 
- All Superinterfaces:
- java.io.Serializable,- TypedValue
 - All Known Subinterfaces:
- DeferredFileValue
 - All Known Implementing Classes:
- DeferredFileValueImpl,- FileValueImpl
 
 public interface FileValue extends TypedValue - Since:
- 7.4
- Author:
- Ronny Bräunlich
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetEncoding()java.nio.charset.CharsetgetEncodingAsCharset()Convenience method to save the transformation.java.lang.StringgetFilename()java.lang.StringgetMimeType()java.io.InputStreamgetValue()The actual value.- 
Methods inherited from interface org.camunda.bpm.engine.variable.value.TypedValuegetType, isTransient
 
- 
 
- 
- 
- 
Method Detail- 
getFilenamejava.lang.String getFilename() 
 - 
getMimeTypejava.lang.String getMimeType() 
 - 
getEncodingAsCharsetjava.nio.charset.Charset getEncodingAsCharset() Convenience method to save the transformation. This method will perform no check if the saved encoding is known to the JVM and therefore could throw every exception thatCharset.forName(String)lists.If no encoding has been saved it will return null. 
 - 
getEncodingjava.lang.String getEncoding() - Returns:
- the saved encoding or null if none has been saved
 
 - 
getValuejava.io.InputStream getValue() Description copied from interface:TypedValueThe actual value. May be null in case the value is null.- Specified by:
- getValuein interface- TypedValue
- Returns:
- the value
 
 
- 
 
-