public enum OSList extends Enum<OSList>
List of all operating systems.
Enum Constant and Description |
---|
Linux
Linux.
|
MacOSX
Mac OSX.
|
Solaris
Solaris.
|
Unknown
Unknown OS.
|
Windows10
Windows 10.
|
Windows2000AndPrevious
Windows 95/98, NT4.0, 2000.
|
Windows2003
Windows 2003 Server.
|
Windows2003R2
Windows 2003 R2 Server.
|
Windows2008
Windows 2008 Server.
|
Windows2008R2
Windows 2008 R2 Server.
|
Windows2012
Windows 2012 Server.
|
Windows2012R2
Windows 2012 R2 Server.
|
Windows2016
Windows 2016 Server.
|
Windows7
Windows 7.
|
Windows8
Windows 8.
|
Windows81
Windows 8.
|
WindowsVista
Windows Vista.
|
WindowsXP
Windows XP x86.
|
WindowsXP64
Windows XP x64.
|
Modifier and Type | Method and Description |
---|---|
static OSList |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSList[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSList Unknown
public static final OSList MacOSX
public static final OSList Linux
public static final OSList Solaris
public static final OSList Windows2000AndPrevious
public static final OSList WindowsXP
public static final OSList WindowsXP64
public static final OSList WindowsVista
public static final OSList Windows7
public static final OSList Windows8
public static final OSList Windows81
public static final OSList Windows10
public static final OSList Windows2003
public static final OSList Windows2003R2
public static final OSList Windows2008
public static final OSList Windows2008R2
public static final OSList Windows2012
public static final OSList Windows2012R2
public static final OSList Windows2016
public static OSList[] values()
for (OSList c : OSList.values()) System.out.println(c);
public static OSList valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017–2018 J&G CompTech. All rights reserved.