Enum Class StubLoader.OS

java.lang.Object
java.lang.Enum<StubLoader.OS>
com.kenai.jffi.internal.StubLoader.OS
All Implemented Interfaces:
Serializable, Comparable<StubLoader.OS>, Constable
Enclosing class:
StubLoader

public static enum StubLoader.OS extends Enum<StubLoader.OS>
  • Enum Constant Details

    • DARWIN

      public static final StubLoader.OS DARWIN
      MacOSX
    • FREEBSD

      public static final StubLoader.OS FREEBSD
      FreeBSD
    • NETBSD

      public static final StubLoader.OS NETBSD
      NetBSD
    • OPENBSD

      public static final StubLoader.OS OPENBSD
      OpenBSD
    • DRAGONFLY

      public static final StubLoader.OS DRAGONFLY
      DragonFly
    • LINUX

      public static final StubLoader.OS LINUX
      Linux
    • SOLARIS

      public static final StubLoader.OS SOLARIS
      Solaris (and OpenSolaris)
    • WINDOWS

      public static final StubLoader.OS WINDOWS
      The evil borg operating system
    • AIX

      public static final StubLoader.OS AIX
      IBM AIX
    • ZLINUX

      public static final StubLoader.OS ZLINUX
      IBM zOS
    • UNKNOWN

      public static final StubLoader.OS UNKNOWN
      No idea what the operating system is
  • Constructor Details

    • OS

      private OS()
  • Method Details

    • values

      public static StubLoader.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 StubLoader.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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<StubLoader.OS>