Enum Platform

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Platform>, java.lang.constant.Constable

    public enum Platform
    extends java.lang.Enum<Platform>
    Strategy object that absorbs the platform differences.

    Do not switch/case on this enum, or do a comparison, as we may add new constants.

    Author:
    Kohsuke Kawaguchi
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      UNIX  
      WINDOWS  
    • Field Summary

      Fields 
      Modifier and Type Field Description
      char pathSeparator
      The character that separates paths in environment variables like PATH and CLASSPATH.
    • Method Summary

      Modifier and Type Method Description
      static Platform current()  
      static boolean isDarwin()  
      static boolean isSnowLeopardOrLater()
      Returns true if we run on Mac OS X >= 10.6
      static Platform valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Platform[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • WINDOWS

        public static final Platform WINDOWS
      • UNIX

        public static final Platform UNIX
    • Field Detail

      • pathSeparator

        public final char pathSeparator
        The character that separates paths in environment variables like PATH and CLASSPATH. On Windows ';' and on Unix ':'.
        See Also:
        File.pathSeparator
    • Method Detail

      • values

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

        public static Platform valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • current

        public static Platform current()
      • isDarwin

        public static boolean isDarwin()
      • isSnowLeopardOrLater

        public static boolean isSnowLeopardOrLater()
        Returns true if we run on Mac OS X >= 10.6