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

com.xiongyingqi.util.EPlatform Maven / Gradle / Ivy

/**
 * spark_src
 */
package com.xiongyingqi.util;

/**
 * 平台
 *
 * @author 瑛琪 xiongyingqi.com
 * @version 2013-8-29 上午11:37:21
 */
public enum EPlatform {
    Any("any"), Linux("Linux"), Mac_OS("Mac OS"), Mac_OS_X("Mac OS X"), Windows("Windows"), OS2(
            "OS/2"), Solaris("Solaris"), SunOS("SunOS"), MPEiX("MPE/iX"), HP_UX("HP-UX"), AIX("AIX"), OS390(
            "OS/390"), FreeBSD("FreeBSD"), Irix("Irix"), Digital_Unix("Digital Unix"), NetWare_411(
            "NetWare"), OSF1("OSF1"), OpenVMS("OpenVMS"), Others("Others");

    private EPlatform(String desc) {
        this.description = desc;
    }

    public String toString() {
        return description;
    }

    private String description;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy