Package org.nuxeo.client.objects.blob
Interface Blob
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
AbstractBlob,FileBlob,FileStreamBlob,StreamBlob
public interface Blob extends java.io.Serializable- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description longgetContentLength()java.lang.StringgetFilename()intgetLength()Deprecated.since 3.1, usegetContentLength()insteadjava.lang.StringgetMimeType()java.io.InputStreamgetStream()
-
-
-
Method Detail
-
getFilename
java.lang.String getFilename()
-
getMimeType
java.lang.String getMimeType()
-
getLength
@Deprecated int getLength()
Deprecated.since 3.1, usegetContentLength()instead
-
getContentLength
long getContentLength()
- Since:
- 3.1
-
getStream
java.io.InputStream getStream() throws java.io.IOException- Throws:
java.io.IOException
-
-