23public final class ConstraintType {
31 public final static ConstraintType
GtEq =
new ConstraintType(
"GtEq");
35 public final static ConstraintType
LtEq =
new ConstraintType(
"LtEq");
39 public final static ConstraintType
Free =
new ConstraintType(
"Free");
50 if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
51 return swigValues[swigValue];
52 for (
int i = 0; i < swigValues.length; i++)
53 if (swigValues[i].swigValue == swigValue)
55 throw new IllegalArgumentException(
"No enum " + ConstraintType.class +
" with value " + swigValue);
59 this.swigName = swigName;
60 this.swigValue = swigNext++;
63 private ConstraintType(String swigName,
int swigValue) {
64 this.swigName = swigName;
65 this.swigValue = swigValue;
66 swigNext = swigValue+1;
69 private ConstraintType(String swigName, ConstraintType swigEnum) {
70 this.swigName = swigName;
71 this.swigValue = swigEnum.swigValue;
72 swigNext = this.swigValue+1;
75 private static ConstraintType[] swigValues = {
Eq,
GtEq,
LtEq,
Free };
76 private static int swigNext = 0;
77 private final int swigValue;
78 private final String swigName;