Enum MatlabEngineSetupEnum
- java.lang.Object
-
- java.lang.Enum<MatlabEngineSetupEnum>
-
- org.eclipse.epsilon.emc.simulink.common.test.MatlabEngineSetupEnum
-
- All Implemented Interfaces:
Serializable
,Comparable<MatlabEngineSetupEnum>
public enum MatlabEngineSetupEnum extends Enum<MatlabEngineSetupEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENGINE_JAR
LIBRARY_PATH
MATLAB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static String
availableVersion()
static List<String>
availableVersions()
static boolean
exists(String version)
File
file()
File
file(String version)
File
getLinuxFile()
File
getLinuxFile(String version)
String
getLinuxPath()
String
getLinuxPath(String version)
File
getMacOSFile()
File
getMacOSFile(String version)
String
getMacOSPath()
String
getMacOSPath(String version)
File
getWindowsFile()
File
getWindowsFile(String version)
String
getWindowsPath()
String
getWindowsPath(String version)
String
path()
String
path(String version)
static MatlabEngineSetupEnum
valueOf(String name)
Returns the enum constant of this type with the specified name.static MatlabEngineSetupEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENGINE_JAR
public static final MatlabEngineSetupEnum ENGINE_JAR
-
MATLAB
public static final MatlabEngineSetupEnum MATLAB
-
LIBRARY_PATH
public static final MatlabEngineSetupEnum LIBRARY_PATH
-
-
Method Detail
-
values
public static MatlabEngineSetupEnum[] 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 (MatlabEngineSetupEnum c : MatlabEngineSetupEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MatlabEngineSetupEnum valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
exists
public static boolean exists(String version)
-
-