Uses of Interface
org.scijava.io.location.Location
-
Packages that use Location Package Description org.scijava.download org.scijava.io org.scijava.io.event org.scijava.io.handle org.scijava.io.location org.scijava.script.io org.scijava.text.io -
-
Uses of Location in org.scijava.download
Methods in org.scijava.download that return Location Modifier and Type Method Description LocationDiskLocationCache. cachedLocation(Location source)LocationLocationCache. cachedLocation(Location source)Gets the cache location of a given data source.LocationDownload. destination()LocationDownload. source()Methods in org.scijava.download that return types with arguments of type Location Modifier and Type Method Description Class<Location>MultiWriteHandle. getType()Methods in org.scijava.download with parameters of type Location Modifier and Type Method Description LocationDiskLocationCache. cachedLocation(Location source)LocationLocationCache. cachedLocation(Location source)Gets the cache location of a given data source.booleanDiskLocationCache. canCache(Location source)booleanLocationCache. canCache(Location source)Gets whether the given location can be cached by this cache.DownloadDefaultDownloadService. download(Location source, Location destination)DownloadDefaultDownloadService. download(Location source, Location destination, LocationCache cache)DownloadDownloadService. download(Location source, Location destination)Downloads data from the given source, storing it into the given destination.DownloadDownloadService. download(Location source, Location destination, LocationCache cache)Downloads data from the given source, storing it into the given destination.StringDiskLocationCache. loadChecksum(Location source)StringLocationCache. loadChecksum(Location source)Loads the checksum value which corresponds to the cached location.voidDiskLocationCache. saveChecksum(Location source, String checksum)voidLocationCache. saveChecksum(Location source, String checksum)Associates the given checksum value with the specified source location. -
Uses of Location in org.scijava.io
Methods in org.scijava.io that return types with arguments of type Location Modifier and Type Method Description default Class<Location>IOPlugin. getType()default Class<Location>IOService. getType()default Class<Location>TypedIOService. getType()Methods in org.scijava.io with parameters of type Location Modifier and Type Method Description booleanAbstractTypedIOService. canOpen(Location source)booleanTypedIOService. canOpen(Location source)booleanAbstractTypedIOService. canSave(D data, Location destination)booleanTypedIOService. canSave(D data, Location destination)default IOPlugin<?>IOService. getOpener(Location source)Gets the most appropriateIOPluginfor opening data from the given location.default IOPlugin<D>TypedIOService. getOpener(Location source)Gets the most appropriateIOPluginfor opening data from the given location.default <D> IOPlugin<D>IOService. getSaver(D data, Location destination)Gets the most appropriateIOPluginfor saving data to the given location.default IOPlugin<D>TypedIOService. getSaver(D data, Location destination)Gets the most appropriateIOPluginfor saving data to the given location.DAbstractTypedIOService. open(Location source)ObjectDefaultIOService. open(Location source)default DIOPlugin. open(Location source)Opens data from the given location.default ObjectIOService. open(Location source)Loads data from the given location.DTypedIOService. open(Location source)Loads data from the given location.voidAbstractTypedIOService. save(D data, Location destination)voidDefaultIOService. save(Object data, Location destination)default voidIOPlugin. save(D data, Location destination)Saves the given data to the specified location.default voidIOService. save(Object data, Location destination)Saves data to the given location.voidTypedIOService. save(D data, Location destination)Saves data to the given location.default booleanIOPlugin. supportsOpen(Location source)Checks whether the I/O plugin can open data from the given location.default booleanIOPlugin. supportsSave(Object data, Location destination)default booleanIOPlugin. supportsSave(Location destination)Checks whether the I/O plugin can save data to the given location. -
Uses of Location in org.scijava.io.event
Methods in org.scijava.io.event that return Location Modifier and Type Method Description LocationIOEvent. getLocation()Gets the data location (source or destination).Constructors in org.scijava.io.event with parameters of type Location Constructor Description DataOpenedEvent(Location location, Object data)DataSavedEvent(Location destination, Object data)IOEvent(Location location, Object data) -
Uses of Location in org.scijava.io.handle
Classes in org.scijava.io.handle with type parameters of type Location Modifier and Type Class Description classAbstractDataHandle<L extends Location>Abstract base class forDataHandleplugins.classAbstractHigherOrderHandle<L extends Location>Abstract superclass forDataHandles that operate over otherDataHandles.classAbstractSeekableStreamHandle<L extends Location>classAbstractStreamHandle<L extends Location>Abstract base class forStreamHandleimplementations.interfaceDataHandle<L extends Location>A data handle is a plugin which provides both streaming and random access to bytes at aLocation(e.g., files or arrays).classDataHandleInputStream<L extends Location>InputStreambacked by aDataHandle.classDataHandleOutputStream<L extends Location>OutputStreambacked by aDataHandle.classReadBufferDataHandle<L extends Location>Read-only bufferedDataHandle.interfaceResettableStreamHandle<L extends Location>interfaceSeekableStreamHandle<L extends Location>interfaceStreamHandle<L extends Location>Methods in org.scijava.io.handle that return types with arguments of type Location Modifier and Type Method Description default Class<DataHandle<Location>>DataHandleService. getPluginType()default Class<Location>DataHandleService. getType()default DataHandle<Location>DataHandleService. readBuffer(DataHandle<Location> handle)Wraps the providedDataHandlein a read-only buffer for accelerated reading.default DataHandle<Location>DataHandleService. readBuffer(Location location)Creates aDataHandleon the providedLocationwrapped in a read-only buffer for accelerated reading.default DataHandle<Location>DataHandleService. writeBuffer(DataHandle<Location> handle)Wraps the providedDataHandlein a write-only buffer for accelerated writing.Methods in org.scijava.io.handle with parameters of type Location Modifier and Type Method Description default booleanDataHandleService. exists(Location location)Convenience method to test whether it describes an existing file.default DataHandle<Location>DataHandleService. readBuffer(Location location)Creates aDataHandleon the providedLocationwrapped in a read-only buffer for accelerated reading.Method parameters in org.scijava.io.handle with type arguments of type Location Modifier and Type Method Description static longDataHandles. copy(DataHandle<Location> in, DataHandle<Location> out)Copies all bytes from the input to the output handle.static longDataHandles. copy(DataHandle<Location> in, DataHandle<Location> out, int length)Copies up tolengthbytes from the input to the output handle.static longDataHandles. copy(DataHandle<Location> in, DataHandle<Location> out, long length, Task task)Copies up tolengthbytes from the input to the output handle, reporting the progress to the provided task.static longDataHandles. copy(DataHandle<Location> in, DataHandle<Location> out, long length, Task task, int bufferSize)Copies up tolengthbytes from the input to the output handle, reporting the progress to the provided task.static longDataHandles. copy(DataHandle<Location> in, DataHandle<Location> out, Task task)Copies all bytes from the input to the output handle, reporting the progress to the provided task.default DataHandle<Location>DataHandleService. readBuffer(DataHandle<Location> handle)Wraps the providedDataHandlein a read-only buffer for accelerated reading.default DataHandle<Location>DataHandleService. writeBuffer(DataHandle<Location> handle)Wraps the providedDataHandlein a write-only buffer for accelerated writing.Constructor parameters in org.scijava.io.handle with type arguments of type Location Constructor Description WriteBufferDataHandle(DataHandle<Location> handle)Creates aWriteBufferDataHandlethat wraps the givenDataHandle, the default size for the buffer is used (10000 bytes).WriteBufferDataHandle(DataHandle<Location> handle, int bufferSize)Creates aWriteBufferDataHandlethat wraps the givenDataHandle -
Uses of Location in org.scijava.io.location
Subinterfaces of Location in org.scijava.io.location Modifier and Type Interface Description interfaceBrowsableLocationALocationthat offers methods to browse other locations relative to it.interfaceRemoteLocationALocationwhich resides on a remote machine.Classes in org.scijava.io.location that implement Location Modifier and Type Class Description classAbstractLocationAbstract base class forLocationimplementations.classAbstractRemoteLocationAbstract base class forRemoteLocationimplementations.classBytesLocationclassDummyLocationLocationbacked by nothing whatsoever.classFileLocationclassURILocationclassURLLocationMethods in org.scijava.io.location that return Location Modifier and Type Method Description LocationFileLocationResolver. resolve(URI uri)LocationLocationResolver. resolve(URI uri)default LocationLocationService. resolve(String uriString)default LocationLocationService. resolve(URI uri)Resolves the givenURIto a location. -
Uses of Location in org.scijava.script.io
Methods in org.scijava.script.io with parameters of type Location Modifier and Type Method Description StringScriptIOPlugin. open(Location source)booleanScriptIOPlugin. supportsOpen(Location source) -
Uses of Location in org.scijava.text.io
Methods in org.scijava.text.io with parameters of type Location Modifier and Type Method Description StringTextIOPlugin. open(Location source)booleanTextIOPlugin. supportsOpen(Location source)
-