Package com.kenai.jffi.internal
Enum StubLoader.OS
- java.lang.Object
-
- java.lang.Enum<StubLoader.OS>
-
- com.kenai.jffi.internal.StubLoader.OS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StubLoader.OS>
- Enclosing class:
- StubLoader
public static enum StubLoader.OS extends java.lang.Enum<StubLoader.OS>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AIX
IBM AIXDARWIN
MacOSXDRAGONFLY
DragonFlyFREEBSD
FreeBSDIBMI
IBM iLINUX
LinuxNETBSD
NetBSDOPENBSD
OpenBSDSOLARIS
Solaris (and OpenSolaris)UNKNOWN
No idea what the operating system isWINDOWS
The evil borg operating systemZLINUX
IBM zOS
-
Constructor Summary
Constructors Modifier Constructor Description private
OS()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static StubLoader.OS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StubLoader.OS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
IBMI
public static final StubLoader.OS IBMI
IBM i
-
ZLINUX
public static final StubLoader.OS ZLINUX
IBM zOS
-
UNKNOWN
public static final StubLoader.OS UNKNOWN
No idea what the operating system is
-
-
Method Detail
-
values
public static StubLoader.OS[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StubLoader.OS c : StubLoader.OS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StubLoader.OS 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<StubLoader.OS>
-
-