Interface GeometryFormat
-
- All Known Implementing Classes:
GeometryFormat3D
public interface GeometryFormat
Interface describing a geometric data format.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDefaultFileExtension()
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.String
getFormatName()
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
-
-