All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anaptecs.jeaf.xfun.api.info.OperatingSystem Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2004 - 2014 anaptecs GmbH, Burgstr. 96, 72764 Reutlingen, Germany
 * 
 * All rights reserved.
 */
package com.anaptecs.jeaf.xfun.api.info;

/**
 * Enumeration implements mechanism to identify the operating system on which an application is running.
 */
public enum OperatingSystem {
  /**
   * Enumeration literal for Windows-based operating systems.
   */
  WINDOWS,

  /**
   * Enumeration literal for Linux-based operating systems.
   */
  LINUX,

  /**
   * Enumeration literal for UNIX-based operating systems.
   */
  UNIX,

  /**
   * Enumeration literal for Mac operating systems.
   */
  MAC,

  /**
   * Enumeration literal for any other operating system.
   */
  OTHER;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy