com.jgcomptech.tools.enums.OSList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-ultimate-tools Show documentation
Show all versions of java-ultimate-tools Show documentation
A large repository of scripts for use in any Java program.
package com.jgcomptech.tools.enums;
/** List of all operating systems. */
public enum OSList {
/** Unknown OS. */
Unknown,
/** Mac OSX. */
MacOSX,
/** Linux. */
Linux,
/** Solaris. */
Solaris,
/** Windows 95/98, NT4.0, 2000. */
Windows2000AndPrevious,
/** Windows XP x86. */
WindowsXP,
/** Windows XP x64. */
WindowsXP64,
/** Windows Vista. */
WindowsVista,
/** Windows 7. */
Windows7,
/** Windows 8. */
Windows8,
/** Windows 8. */
Windows81,
/** Windows 10. */
Windows10,
/** Windows 2003 Server. */
Windows2003,
/** Windows 2003 R2 Server. */
Windows2003R2,
/** Windows 2008 Server. */
Windows2008,
/** Windows 2008 R2 Server. */
Windows2008R2,
/** Windows 2012 Server. */
Windows2012,
/** Windows 2012 R2 Server. */
Windows2012R2,
/** Windows 2016 Server. */
Windows2016
}