StructUtsname
public
final
class
StructUtsname
extends Object
java.lang.Object | |
↳ | android.system.StructUtsname |
Information returned by Os#uname
.
Corresponds to C's struct utsname
from <sys/utsname.h>
.
Summary
Fields | |
---|---|
public
final
String |
machine
The machine architecture, such as "armv7l" or "x86_64". |
public
final
String |
nodename
The machine's unqualified name on some implementation-defined network. |
public
final
String |
release
The OS release, such as "2.6.35-27-generic". |
public
final
String |
sysname
The OS name, such as "Linux". |
public
final
String |
version
The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011". |
Public constructors | |
---|---|
StructUtsname(String sysname, String nodename, String release, String version, String machine)
Constructs an instance with the given field values. |
Public methods | |
---|---|
String
|
toString()
Returns a string representation of the object. |
Inherited methods | |
---|---|
Fields
machine
public final String machine
The machine architecture, such as "armv7l" or "x86_64".
nodename
public final String nodename
The machine's unqualified name on some implementation-defined network.
release
public final String release
The OS release, such as "2.6.35-27-generic".
version
public final String version
The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011".
Public constructors
StructUtsname
public StructUtsname (String sysname, String nodename, String release, String version, String machine)
Constructs an instance with the given field values.
Parameters | |
---|---|
sysname |
String |
nodename |
String |
release |
String |
version |
String |
machine |
String |
Public methods
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |