Interface GeometryIOMetadata
-
- All Known Subinterfaces:
GeometryInput,GeometryOutput
- All Known Implementing Classes:
AbstractGeometryIOMetadata,FileGeometryInput,FileGeometryOutput,StreamGeometryInput,StreamGeometryOutput,UrlGeometryInput
public interface GeometryIOMetadataInterface containing basic metadata fields for use in I/O operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.nio.charset.CharsetgetCharset()Get the charset for the operation, if any.java.lang.StringgetFileName()Get the file name associated with the operation, if any.
-
-
-
Method Detail
-
getFileName
java.lang.String getFileName()
Get the file name associated with the operation, if any.- Returns:
- file name associated with the operation or null if unknown or not applicable
-
getCharset
java.nio.charset.Charset getCharset()
Get the charset for the operation, if any.- Returns:
- charset for the operation or null if unknown or not applicable
-
-