Class StructUtsname


  • public final class StructUtsname
    extends Object
    Information returned by Os.uname(). Corresponds to C's struct utsname from <sys/utsname.h>.
    • 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".
    • Constructor Detail

      • StructUtsname

        public StructUtsname​(String sysname,
                             String nodename,
                             String release,
                             String version,
                             String machine)
        Constructs an instance with the given field values.
    • Method Detail

      • toString

        public String toString()
        Description copied from class: Object
        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.

        Overrides:
        toString in class Object
        Returns:
        a printable representation of this object.