public enum EngineType extends java.lang.Enum<EngineType>
Enum Constant and Description |
---|
MATLAB
Use the Matlab engine.
|
R
Use the open-source R engine.
|
SAS
Use the SAS engine.
|
SPLUS
As of version 7.9 of Spotfire Statistics Services, SPLUS is no longer supported.
|
TERR
Use the TIBCO Enterprise Runtime for R engine (the default).
|
Modifier and Type | Method and Description |
---|---|
static EngineType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EngineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EngineType SPLUS
public static final EngineType R
public static final EngineType TERR
public static final EngineType MATLAB
public static final EngineType SAS
public static EngineType[] values()
for (EngineType c : EngineType.values()) System.out.println(c);
public static EngineType 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 null