IDocumentFormat
public interface IDocumentFormat
Represents the root interface for all supporting document formats.
Methods
Method | Description |
---|---|
getName() | Gets the full formal name of the document format. |
getExtension() | Gets the file extension of the document format. |
getMime() | Gets the MIME type of the document format. |
getFormatFamily() | Gets the format family to which the document format belongs. |
getName()
public abstract String getName()
Gets the full formal name of the document format.
Returns: java.lang.String
getExtension()
public abstract String getExtension()
Gets the file extension of the document format.
Returns: java.lang.String
getMime()
public abstract String getMime()
Gets the MIME type of the document format.
Returns: java.lang.String
getFormatFamily()
public abstract FormatFamilies getFormatFamily()
Gets the format family to which the document format belongs.
Returns: FormatFamilies