public static enum NativeLibraryManager.SystemType extends java.lang.Enum<NativeLibraryManager.SystemType>
Enum Constant and Description |
---|
Generic |
Linux |
Linux32 |
Linux64 |
MacOS |
MacOS64 |
Unknown |
Windows |
Windows32 |
Windows64 |
Modifier and Type | Method and Description |
---|---|
NativeLibraryManager.SystemType[] |
getSubTypes()
Returns the system types which are immediate subtypes of a given type
|
boolean |
isInstanceOf(NativeLibraryManager.SystemType sysType)
Returns true if this system type is an instance of the (possibly
more general) system type specified by
sysType . |
static NativeLibraryManager.SystemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeLibraryManager.SystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeLibraryManager.SystemType Unknown
public static final NativeLibraryManager.SystemType Linux32
public static final NativeLibraryManager.SystemType Linux64
public static final NativeLibraryManager.SystemType Linux
public static final NativeLibraryManager.SystemType Windows32
public static final NativeLibraryManager.SystemType Windows64
public static final NativeLibraryManager.SystemType Windows
public static final NativeLibraryManager.SystemType MacOS64
public static final NativeLibraryManager.SystemType MacOS
public static final NativeLibraryManager.SystemType Generic
public static NativeLibraryManager.SystemType[] values()
for (NativeLibraryManager.SystemType c : NativeLibraryManager.SystemType.values()) System.out.println(c);
public static NativeLibraryManager.SystemType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic NativeLibraryManager.SystemType[] getSubTypes()
public boolean isInstanceOf(NativeLibraryManager.SystemType sysType)
sysType
.sysType
- system type to test against