Package android.system
Class StructUtsname
- java.lang.Object
-
- android.system.StructUtsname
-
public final class StructUtsname extends Object
-
-
Field Summary
Fields Modifier and Type Field Description StringmachineThe machine architecture, such as "armv7l" or "x86_64".StringnodenameThe machine's unqualified name on some implementation-defined network.StringreleaseThe OS release, such as "2.6.35-27-generic".StringsysnameThe OS name, such as "Linux".StringversionThe OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011".
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()Returns a string containing a concise, human-readable description of this object.
-
-
-
Field Detail
-
sysname
public final String sysname
The OS name, such as "Linux".
-
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".
-
machine
public final String machine
The machine architecture, such as "armv7l" or "x86_64".
-
-
Method Detail
-
toString
public String toString()
Description copied from class:ObjectReturns 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
toStringmethod if you intend implementing your owntoStringmethod.
-
-