Class MutableSystemInfo
- java.lang.Object
-
- net.rubygrapefruit.platform.internal.MutableSystemInfo
-
- All Implemented Interfaces:
NativeIntegration,SystemInfo
public class MutableSystemInfo extends java.lang.Object implements SystemInfo
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface net.rubygrapefruit.platform.SystemInfo
SystemInfo.Architecture
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringmachineArchitecturejava.lang.StringosNamejava.lang.StringosVersion
-
Constructor Summary
Constructors Constructor Description MutableSystemInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SystemInfo.ArchitecturegetArchitecture()Returns the machine architecture, as reported by the operating system.java.lang.StringgetArchitectureName()Returns the machine architecture name, as reported by the operating system.java.lang.StringgetKernelName()Returns the name of the kernel for the current operating system.java.lang.StringgetKernelVersion()Returns the version of the kernel for the current operating system.
-
-
-
Method Detail
-
getKernelName
public java.lang.String getKernelName()
Description copied from interface:SystemInfoReturns the name of the kernel for the current operating system.- Specified by:
getKernelNamein interfaceSystemInfo
-
getKernelVersion
public java.lang.String getKernelVersion()
Description copied from interface:SystemInfoReturns the version of the kernel for the current operating system.- Specified by:
getKernelVersionin interfaceSystemInfo
-
getArchitectureName
public java.lang.String getArchitectureName()
Description copied from interface:SystemInfoReturns the machine architecture name, as reported by the operating system.- Specified by:
getArchitectureNamein interfaceSystemInfo
-
getArchitecture
public SystemInfo.Architecture getArchitecture()
Description copied from interface:SystemInfoReturns the machine architecture, as reported by the operating system.- Specified by:
getArchitecturein interfaceSystemInfo
-
-