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

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Fields

machine

Added in API level 21
public final String machine

The machine architecture, such as "armv7l" or "x86_64".

nodename

Added in API level 21
public final String nodename

The machine's unqualified name on some implementation-defined network.

release

Added in API level 21
public final String release

The OS release, such as "2.6.35-27-generic".

sysname

Added in API level 21
public final String sysname

The OS name, such as "Linux".

version

Added in API level 21
public final String version

The OS version, such as "#48-Ubuntu SMP Tue Feb 22 20:25:29 UTC 2011".

Public constructors

StructUtsname

Added in API level 21
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

Added in API level 21
public String toString ()

Returns a string representation of the object.

Returns
String a string representation of the object.