public interface OperatingSystemFamily
Note: This interface is not intended for implementation by build script or plugin authors.
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLinux()
Checks if the operating system family is Linux.
|
boolean |
isMacOs()
Checks if the operating system family is macOS.
|
boolean |
isWindows()
Checks if the operating system family is Windows.
|
boolean isWindows()
true if the operating system family is Windows or false otherwise.boolean isLinux()
true if the operating system family is Linux or false otherwise.boolean isMacOs()
true if the operating system family is macOS or false otherwise.