Enum Class PlatformEnumFFM

All Implemented Interfaces:
Serializable, Comparable<PlatformEnumFFM>, Constable

@Deprecated public enum PlatformEnumFFM extends Enum<PlatformEnumFFM>
Deprecated.
Use PlatformEnum directly. PlatformEnum.getCurrentPlatform() returns the current platform; FFM support is available for PlatformEnum.MACOS, PlatformEnum.LINUX, and PlatformEnum.WINDOWS.
An enumeration of supported operating systems for the FFM module.
  • Enum Constant Details

    • MACOS

      public static final PlatformEnumFFM MACOS
      Deprecated.
      macOS
    • LINUX

      public static final PlatformEnumFFM LINUX
      Deprecated.
      A flavor of Linux
    • WINDOWS

      public static final PlatformEnumFFM WINDOWS
      Deprecated.
      Microsoft Windows
    • UNSUPPORTED

      public static final PlatformEnumFFM UNSUPPORTED
      Deprecated.
      Unsupported OS
  • Method Details

    • values

      public static PlatformEnumFFM[] values()
      Deprecated.
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PlatformEnumFFM valueOf(String name)
      Deprecated.
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getName

      @Deprecated public String getName()
      Deprecated.
      Use PlatformEnum.getCurrentPlatform() and call PlatformEnum.getName() on the result.
      Gets the name of the platform.
      Returns:
      the name of the platform
    • getCurrentPlatform

      @Deprecated public static PlatformEnumFFM getCurrentPlatform()
      Deprecated.
      Use PlatformEnum.getCurrentPlatform() instead.
      Gets the current platform, detected from system properties.
      Returns:
      the current platform