17public final class EvaluationMode {
25 public final static EvaluationMode
JacobianOnly =
new EvaluationMode(
"JacobianOnly");
29 public final static EvaluationMode
Both =
new EvaluationMode(
"Both");
40 if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
41 return swigValues[swigValue];
42 for (
int i = 0; i < swigValues.length; i++)
43 if (swigValues[i].swigValue == swigValue)
45 throw new IllegalArgumentException(
"No enum " + EvaluationMode.class +
" with value " + swigValue);
49 this.swigName = swigName;
50 this.swigValue = swigNext++;
53 private EvaluationMode(String swigName,
int swigValue) {
54 this.swigName = swigName;
55 this.swigValue = swigValue;
56 swigNext = swigValue+1;
59 private EvaluationMode(String swigName, EvaluationMode swigEnum) {
60 this.swigName = swigName;
61 this.swigValue = swigEnum.swigValue;
62 swigNext = this.swigValue+1;
66 private static int swigNext = 0;
67 private final int swigValue;
68 private final String swigName;