@Deprecated public interface OperatingSystemFamily
Note: This interface is not intended for implementation by build script or plugin authors.
Modifier and Type | Method and Description |
---|---|
boolean |
isFreeBSD()
Deprecated.
Checks if the operating system family is FreeBSD.
|
boolean |
isLinux()
Deprecated.
Checks if the operating system family is Linux.
|
boolean |
isMacOs()
Deprecated.
Checks if the operating system family is macOS.
|
default boolean |
isMacOS()
Deprecated.
Check if the operating system family is macOS.
|
boolean |
isWindows()
Deprecated.
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.default boolean isMacOS()
true
if the operating system family is macOS or false
otherwise.boolean isFreeBSD()
true
if the operating system family is FreeBSD or false
otherwise.