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

org.eclipse.osgi.service.environment.Constants Maven / Gradle / Ivy

Go to download

AspectJ tools most notably contains the AspectJ compiler (AJC). AJC applies aspects to Java classes during compilation, fully replacing Javac for plain Java classes and also compiling native AspectJ or annotation-based @AspectJ syntax. Furthermore, AJC can weave aspects into existing class files in a post-compile binary weaving step. This library is a superset of AspectJ weaver and hence also of AspectJ runtime.

There is a newer version: 1.9.22.1
Show newest version
/*******************************************************************************
 * Copyright (c) 2003, 2009 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.osgi.service.environment;

/**
 * Constants used with the {@link EnvironmentInfo} service.
 * @since 3.0
 * 

* This interface is not intended to be implemented by clients. *

* @noimplement This interface is not intended to be implemented by clients. * @noextend This interface is not intended to be extended by clients. */ public interface Constants { //TODO These constants need to be aligned with the OSGi ones. See page 64-588 of the spec /** * Constant string (value "win32") indicating the platform is running on a * Window 32-bit operating system (e.g., Windows 98, NT, 2000). */ public static final String OS_WIN32 = "win32";//$NON-NLS-1$ /** * Constant string (value "linux") indicating the platform is running on a * Linux-based operating system. */ public static final String OS_LINUX = "linux";//$NON-NLS-1$ /** * Constant string (value "aix") indicating the platform is running on an * AIX-based operating system. */ public static final String OS_AIX = "aix";//$NON-NLS-1$ /** * Constant string (value "solaris") indicating the platform is running on a * Solaris-based operating system. */ public static final String OS_SOLARIS = "solaris";//$NON-NLS-1$ /** * Constant string (value "hpux") indicating the platform is running on an * HP/UX-based operating system. */ public static final String OS_HPUX = "hpux";//$NON-NLS-1$ /** * Constant string (value "qnx") indicating the platform is running on a * QNX-based operating system. */ public static final String OS_QNX = "qnx";//$NON-NLS-1$ /** * Constant string (value "macosx") indicating the platform is running on a * Mac OS X operating system. */ public static final String OS_MACOSX = "macosx";//$NON-NLS-1$ /** * Constant string (value "epoc32") indicating the platform is running on a * Epoc 32-bit Symbian operating system. * @since 3.4 */ public static final String OS_EPOC32 = "epoc32";//$NON-NLS-1$ /** * Constant string (value "os/400") indicating the platform is running on a * OS/400 operating system. * @since 3.5 */ public static final String OS_OS400 = "os/400"; //$NON-NLS-1$ /** * Constant string (value "os/390") indicating the platform is running on a * OS/390 operating system. * @since 3.5 */ public static final String OS_OS390 = "os/390"; //$NON-NLS-1$ /** * Constant string (value "z/os") indicating the platform is running on a * z/OS operating system. * @since 3.5 */ public static final String OS_ZOS = "z/os"; //$NON-NLS-1$ /** * Constant string (value "freebsd") indicating the platform is running on a * FreeBSD-based operating system. * @since 3.15 */ public static final String OS_FREEBSD = "freebsd";//$NON-NLS-1$ /** * Constant string (value "unknown") indicating the platform is running on a * machine running an unknown operating system. */ public static final String OS_UNKNOWN = "unknown";//$NON-NLS-1$ /** * Constant string (value "x86") indicating the platform is running on an * x86-based architecture. */ public static final String ARCH_X86 = "x86";//$NON-NLS-1$ /** * Constant string (value "PA_RISC") indicating the platform is running on an * PA_RISC-based architecture. */ public static final String ARCH_PA_RISC = "PA_RISC";//$NON-NLS-1$ /** * Constant string (value "ppc") indicating the platform is running on an * PowerPC-based architecture. */ public static final String ARCH_PPC = "ppc";//$NON-NLS-1$ /** * Constant string (value "ppc64") indicating the platform is running on an * PowerPC-based 64-bit architecture. * @since 3.6 */ public static final String ARCH_PPC64 = "ppc64";//$NON-NLS-1$ /** * Constant string (value "sparc") indicating the platform is running on an * Sparc-based architecture. */ public static final String ARCH_SPARC = "sparc";//$NON-NLS-1$ /** * Constant string (value "x86_64") indicating the platform is running on an * x86 64bit-based architecture. * * @since 3.1 */ public static final String ARCH_X86_64 = "x86_64";//$NON-NLS-1$ /** * Constant string (value "amd64") indicating the platform is running on an * AMD64-based architecture. * * @deprecated use ARCH_X86_64 instead. Note the values * has been changed to be the value of the ARCH_X86_64 constant. */ public static final String ARCH_AMD64 = ARCH_X86_64; /** * Constant string (value "ia64") indicating the platform is running on an * IA64-based architecture. */ public static final String ARCH_IA64 = "ia64"; //$NON-NLS-1$ /** * Constant string (value "ia64_32") indicating the platform is running on an * IA64 32bit-based architecture. * * @since 3.1 */ public static final String ARCH_IA64_32 = "ia64_32";//$NON-NLS-1$ /** * Constant string (value "win32") indicating the platform is running on a * machine using the Windows windowing system. */ public static final String WS_WIN32 = "win32";//$NON-NLS-1$ /** * Constant string (value "wpf") indicating the platform is running on a * machine using the Windows Presentation Foundation sytstem. */ public static final String WS_WPF = "wpf"; //$NON-NLS-1$ /** * Constant string (value "motif") indicating the platform is running on a * machine using the Motif windowing system. */ public static final String WS_MOTIF = "motif";//$NON-NLS-1$ /** * Constant string (value "gtk") indicating the platform is running on a * machine using the GTK windowing system. */ public static final String WS_GTK = "gtk";//$NON-NLS-1$ /** * Constant string (value "photon") indicating the platform is running on a * machine using the Photon windowing system. */ public static final String WS_PHOTON = "photon";//$NON-NLS-1$ /** * Constant string (value "carbon") indicating the platform is running on a * machine using the Carbon windowing system (Mac OS X). */ public static final String WS_CARBON = "carbon";//$NON-NLS-1$ /** * Constant string (value "cocoa") indicating the platform is running on a * machine using the Cocoa windowing system. * @since 3.5 */ public static final String WS_COCOA = "cocoa";//$NON-NLS-1$ /** * Constant string (value "s60") indicating the platform is running on a * machine using the S60 windowing system. * @since 3.4 */ public static final String WS_S60 = "s60";//$NON-NLS-1$ /** * Constant string (value "unknown") indicating the platform is running on a * machine running an unknown windowing system. */ public static final String WS_UNKNOWN = "unknown";//$NON-NLS-1$ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy