Enum Class Platform.Os

java.lang.Object
java.lang.Enum<Platform.Os>
com.jme3.system.Platform.Os
All Implemented Interfaces:
Serializable, Comparable<Platform.Os>, Constable
Enclosing class:
Platform

public static enum Platform.Os extends Enum<Platform.Os>
Enumerate generic names of operating systems
  • Enum Constant Details

    • Linux

      public static final Platform.Os Linux
      Linux operating systems
    • Windows

      public static final Platform.Os Windows
      Microsoft Windows operating systems
    • iOS

      public static final Platform.Os iOS
      iOS operating systems
    • MacOS

      public static final Platform.Os MacOS
      macOS operating systems
    • Android

      public static final Platform.Os Android
      Android operating systems
  • Method Details

    • values

      public static Platform.Os[] values()
      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 Platform.Os valueOf(String name)
      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