java.lang.Object | |
↳ | android.system.StructUtsname |
Information returned by uname()
.
Corresponds to C's struct utsname
from <sys/utsname.h>
.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
machine | The machine architecture, such as "armv7l" or "x86_64". | ||||||||||
nodename | The machine's unqualified name on some implementation-defined network. | ||||||||||
release | The OS release, such as "2.6.35-27-generic". | ||||||||||
sysname | The OS name, such as "Linux". | ||||||||||
version | The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011". |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs an instance with the given field values.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a string containing a concise, human-readable description of this
object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
The machine architecture, such as "armv7l" or "x86_64".
The machine's unqualified name on some implementation-defined network.
The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011".
Constructs an instance with the given field values.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.