Package org.openstreetmap.josm.tools
Interface PlatformVisitor<T>
-
- Type Parameters:
T
- type that will be the result of the visiting operation
- All Known Implementing Classes:
NTV2Proj4DirGridShiftFileSource
public interface PlatformVisitor<T>
Visitor, to be used withPlatform
.- Since:
- 12776
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
visitOsx()
VisitPlatform.OSX
T
visitUnixoid()
VisitPlatform.UNIXOID
T
visitWindows()
VisitPlatform.WINDOWS
-
-
-
Method Detail
-
visitUnixoid
T visitUnixoid()
VisitPlatform.UNIXOID
- Returns:
- result of the operation
-
visitWindows
T visitWindows()
VisitPlatform.WINDOWS
- Returns:
- result of the operation
-
visitOsx
T visitOsx()
VisitPlatform.OSX
- Returns:
- result of the operation
-
-