package saker.std.api.file.location
public interface FileLocationVisitor
Visitor interface for the possible types of FileLocation.
The visitor is used with FileLocation.accept(visit
method of this interface.
All of the declared methods in this interface are default
and throw an
UnsupportedOperationException by default. Additional visit
methods may be added to this
interface with similar default implementations.
Clients are recommended to implement this interface.
public default void | Visits a execution file location. |
public default void | visit( Visits a local file location. |
Visits a execution file location.
locThe file location.
Visits a local file location.
locThe file location.