public static enum RRuntime.RRuntimeState extends Enum<RRuntime.RRuntimeState>
| Enum Constant and Description |
|---|
JRI_DEPENDENCY_FIX_FAIL
The dependency fixing did not resolve the issue with the dependencies.
|
JRI_ERROR_FINDING
There was an error while finding the JRI.
|
JRI_FOUND_NOT_IN_PATH
The JRI was successfully found but its location is not in the path.
|
JRI_NOT_FOUND
The JRI could not be found.
|
JRI_WRONG_FOUND_OR_OTHER
The JRI was found but loading failed due to a non-dependency error issue.
|
R_APPLICATION_FOLDER_NOT_FOUND
The R application folder could not be found.
|
READY
The JRI was found in the path and there are no errors.
|
| Modifier and Type | Method and Description |
|---|---|
static RRuntime.RRuntimeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RRuntime.RRuntimeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RRuntime.RRuntimeState JRI_FOUND_NOT_IN_PATH
public static final RRuntime.RRuntimeState JRI_ERROR_FINDING
public static final RRuntime.RRuntimeState JRI_NOT_FOUND
public static final RRuntime.RRuntimeState READY
public static final RRuntime.RRuntimeState R_APPLICATION_FOLDER_NOT_FOUND
public static final RRuntime.RRuntimeState JRI_WRONG_FOUND_OR_OTHER
public static final RRuntime.RRuntimeState JRI_DEPENDENCY_FIX_FAIL
public static RRuntime.RRuntimeState[] values()
for (RRuntime.RRuntimeState c : RRuntime.RRuntimeState.values()) System.out.println(c);
public static RRuntime.RRuntimeState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.