net.sf.latexdraw.util
Enum LSystem.OperatingSystem

java.lang.Object
  extended by java.lang.Enum<LSystem.OperatingSystem>
      extended by net.sf.latexdraw.util.LSystem.OperatingSystem
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LSystem.OperatingSystem>
Enclosing class:
LSystem

public static enum LSystem.OperatingSystem
extends java.lang.Enum<LSystem.OperatingSystem>

The different operating systems managed.


Enum Constant Summary
LINUX
           
MAC_OS_X
           
SEVEN
           
VISTA
           
XP
           
 
Method Summary
 java.lang.String getDvipsBinPath()
           
 java.lang.String getLatexBinPath()
           
 java.lang.String getPdfcropBinPath()
           
 java.lang.String getPs2pdfBinPath()
           
static LSystem.OperatingSystem valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LSystem.OperatingSystem[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VISTA

public static final LSystem.OperatingSystem VISTA

XP

public static final LSystem.OperatingSystem XP

SEVEN

public static final LSystem.OperatingSystem SEVEN

MAC_OS_X

public static final LSystem.OperatingSystem MAC_OS_X

LINUX

public static final LSystem.OperatingSystem LINUX
Method Detail

values

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

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

valueOf

public static LSystem.OperatingSystem 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

getLatexBinPath

public java.lang.String getLatexBinPath()
Returns:
The path where is the latex binary.
Since:
3.0

getDvipsBinPath

public java.lang.String getDvipsBinPath()
Returns:
The path where is the dvips binary.
Since:
3.0

getPs2pdfBinPath

public java.lang.String getPs2pdfBinPath()
Returns:
The path where is the ps2pdf binary.
Since:
3.0

getPdfcropBinPath

public java.lang.String getPdfcropBinPath()
Returns:
The path where is the pdfcrop binary.
Since:
3.0