Package com.comsol.api.database.result
Interface ExportFileItemVersionResult
-
- All Superinterfaces:
DatabaseApiValue
public interface ExportFileItemVersionResult extends DatabaseApiValue
The result of exporting file resource contents of a file version from a Model Manager database.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<java.lang.String>
exportedLocations()
Returns the absolute paths to the exported files.java.lang.String
firstExportedLocationOrNull()
Returns the absolute path to the exported file.ItemVersionKey
itemVersionKey()
Returns the identifying key of the file version for the exported file resource contents.
-
-
-
Method Detail
-
itemVersionKey
ItemVersionKey itemVersionKey()
Returns the identifying key of the file version for the exported file resource contents.- Returns:
- The identifying key of the file version for the exported file resource contents.
-
firstExportedLocationOrNull
java.lang.String firstExportedLocationOrNull()
Returns the absolute path to the exported file. If multiple file resources were exported, the absolute path of the first encountered file is returned.
Depending on the format of the provided target location, the path is either specified as a file system path or as a file scheme path.
- Returns:
- The absolute path to the exported file, or null if nothing was exported.
-
exportedLocations
java.util.Collection<java.lang.String> exportedLocations()
Returns the absolute paths to the exported files.
Depending on the format of the provided target location, the paths are either specified as file system paths or as file scheme paths.
- Returns:
- The absolute paths to the exported files.
-
-