Interface BrowseGraphic
-
@UML(identifier="MD_BrowseGraphic", specification=ISO_19115) public interface BrowseGraphic
Graphic that provides an illustration of the dataset (should include a legend for the graphic).- Since:
- 2.0
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternationalString
getFileDescription()
Text description of the illustration.java.net.URI
getFileName()
Name of the file that contains a graphic that provides an illustration of the dataset.java.lang.String
getFileType()
Format in which the illustration is encoded.
-
-
-
Method Detail
-
getFileName
@UML(identifier="fileName", obligation=MANDATORY, specification=ISO_19115) java.net.URI getFileName()
Name of the file that contains a graphic that provides an illustration of the dataset.- Returns:
- File that contains a graphic that provides an illustration of the dataset.
-
getFileDescription
@UML(identifier="fileDescription", obligation=OPTIONAL, specification=ISO_19115) InternationalString getFileDescription()
Text description of the illustration.- Returns:
- Text description of the illustration, or
null
.
-
getFileType
@UML(identifier="fileType", obligation=OPTIONAL, specification=ISO_19115) java.lang.String getFileType()
Format in which the illustration is encoded. Examples: CGM, EPS, GIF, JPEG, PBM, PS, TIFF, XWD. Raster formats are encouraged to use one of the names returned byImageIO.getReaderFormatNames()
.- Returns:
- Format in which the illustration is encoded, or
null
. - See Also:
ImageIO.getReaderFormatNames()
-
-