Enum OsName

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<OsName>

    public enum OsName
    extends java.lang.Enum<OsName>
    • Enum Constant Detail

      • unknown

        public static final OsName unknown
      • other

        public static final OsName other
      • linux

        public static final OsName linux
      • windows

        public static final OsName windows
      • darwin

        public static final OsName darwin
      • hpux

        public static final OsName hpux
      • aix

        public static final OsName aix
      • dragonfly

        public static final OsName dragonfly
      • freebsd

        public static final OsName freebsd
      • netbsd

        public static final OsName netbsd
      • openbsd

        public static final OsName openbsd
      • osf

        public static final OsName osf
      • solaris

        public static final OsName solaris
    • Field Detail

      • value

        public final int value
    • Method Detail

      • values

        public static OsName[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (OsName c : OsName.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OsName valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<OsName>