Interface GeometryFormat
-
- All Known Implementing Classes:
GeometryFormat3D
public interface GeometryFormatInterface describing a geometric data format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefaultFileExtension()Get the default file extension used by the format.java.util.List<java.lang.String>getFileExtensions()Get all file extensions associated with the format, including thedefault.java.lang.StringgetFormatName()Get the format name.
-
-
-
Method Detail
-
getFormatName
java.lang.String getFormatName()
Get the format name.- Returns:
- format name
-
getDefaultFileExtension
java.lang.String getDefaultFileExtension()
Get the default file extension used by the format.- Returns:
- default file extension
-
getFileExtensions
java.util.List<java.lang.String> getFileExtensions()
Get all file extensions associated with the format, including thedefault.- Returns:
- all file extensions associated with the format
-
-