public static enum NativeSystem.Family extends Enum<NativeSystem.Family>
NativeSystem
Enum Constant and Description |
---|
DARWIN
The Apple OS X operating system family.
|
FREEBSD
The FreeBSD operating system family.
|
LINUX
The Linux operating system family.
|
OPENBSD
The OpenBSD operating system family.
|
SOLARIS
The Solaris operating system family.
|
UNSUPPORTED
Any unsupported operating system family.
|
WINDOWS
The Windows operating system family.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NativeSystem.Family |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NativeSystem.Family[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeSystem.Family FREEBSD
public static final NativeSystem.Family OPENBSD
public static final NativeSystem.Family DARWIN
public static final NativeSystem.Family SOLARIS
public static final NativeSystem.Family LINUX
public static final NativeSystem.Family WINDOWS
public static final NativeSystem.Family UNSUPPORTED
public static NativeSystem.Family[] values()
for (NativeSystem.Family c : NativeSystem.Family.values()) System.out.println(c);
public static NativeSystem.Family valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<NativeSystem.Family>
Copyright © 2006-2015 ${project.vendor}. All Rights Received.