maspack.fileutil
Enum NativeLibraryManager.SystemType

java.lang.Object
  extended by java.lang.Enum<NativeLibraryManager.SystemType>
      extended by maspack.fileutil.NativeLibraryManager.SystemType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<NativeLibraryManager.SystemType>
Enclosing class:
NativeLibraryManager

public static enum NativeLibraryManager.SystemType
extends java.lang.Enum<NativeLibraryManager.SystemType>

Indicates the system type.


Enum Constant Summary
Linux
           
Linux64
           
MacOS
           
Unknown
           
Windows
           
Windows64
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Linux

public static final NativeLibraryManager.SystemType Linux

Linux64

public static final NativeLibraryManager.SystemType Linux64

Windows

public static final NativeLibraryManager.SystemType Windows

Windows64

public static final NativeLibraryManager.SystemType Windows64

MacOS

public static final NativeLibraryManager.SystemType MacOS

Unknown

public static final NativeLibraryManager.SystemType Unknown
Method Detail

values

public static NativeLibraryManager.SystemType[] 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 (NativeLibraryManager.SystemType c : NativeLibraryManager.SystemType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static NativeLibraryManager.SystemType 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 name
java.lang.NullPointerException - if the argument is null