Package com.io7m.smfj.core
Interface SMFFormatDescriptionType
-
- All Known Implementing Classes:
SMFFormatDescription
@Immutable public interface SMFFormatDescriptionTypeA description of a format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringdescription()java.lang.StringmimeType()java.lang.Stringname()booleanrandomAccess()java.lang.Stringsuffix()
-
-
-
Method Detail
-
description
java.lang.String description()
- Returns:
- A human-readable description of the format
-
suffix
java.lang.String suffix()
- Returns:
- The filename suffix used for the format
-
mimeType
java.lang.String mimeType()
- Returns:
- The mime type for the format
-
name
java.lang.String name()
- Returns:
- The unique name for the format
-
randomAccess
boolean randomAccess()
- Returns:
trueiff the format supports random access
-
-