Package com.saperion.connector.formats
Interface Format
-
- All Known Implementing Classes:
SourceFormat
,TargetFormat
public interface Format
Generalization of the file format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getExtension()
java.lang.String
getMimetype()
java.util.Set<java.lang.String>
getMimetypes()
-
-
-
Method Detail
-
getExtension
java.lang.String getExtension()
- Returns:
- File extension as
String
.
-
getMimetype
java.lang.String getMimetype()
- Returns:
- MIME type.
-
getMimetypes
java.util.Set<java.lang.String> getMimetypes()
- Returns:
- all possible MIME-Types as
Set
ofSting
representations. - See Also:
- http://de.selfhtml.org/diverses/mimetypen.htm
-
-