55 lines
1.7 KiB
Java
55 lines
1.7 KiB
Java
|
|
/* ----------------------------------------------------------------------------
|
||
|
|
* This file was automatically generated by SWIG (https://www.swig.org).
|
||
|
|
* Version 4.4.1
|
||
|
|
*
|
||
|
|
* Do not make changes to this file unless you know what you are doing - modify
|
||
|
|
* the SWIG interface file instead.
|
||
|
|
* ----------------------------------------------------------------------------- */
|
||
|
|
|
||
|
|
package upm_interfaces;
|
||
|
|
|
||
|
|
public final class DistanceUnit {
|
||
|
|
public final static DistanceUnit CM = new DistanceUnit("CM");
|
||
|
|
public final static DistanceUnit INCH = new DistanceUnit("INCH");
|
||
|
|
|
||
|
|
public final int swigValue() {
|
||
|
|
return swigValue;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String toString() {
|
||
|
|
return swigName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public static DistanceUnit swigToEnum(int swigValue) {
|
||
|
|
if (swigValue < swigValues.length && swigValue >= 0 && swigValues[swigValue].swigValue == swigValue)
|
||
|
|
return swigValues[swigValue];
|
||
|
|
for (int i = 0; i < swigValues.length; i++)
|
||
|
|
if (swigValues[i].swigValue == swigValue)
|
||
|
|
return swigValues[i];
|
||
|
|
throw new IllegalArgumentException("No enum " + DistanceUnit.class + " with value " + swigValue);
|
||
|
|
}
|
||
|
|
|
||
|
|
private DistanceUnit(String swigName) {
|
||
|
|
this.swigName = swigName;
|
||
|
|
this.swigValue = swigNext++;
|
||
|
|
}
|
||
|
|
|
||
|
|
private DistanceUnit(String swigName, int swigValue) {
|
||
|
|
this.swigName = swigName;
|
||
|
|
this.swigValue = swigValue;
|
||
|
|
swigNext = swigValue+1;
|
||
|
|
}
|
||
|
|
|
||
|
|
private DistanceUnit(String swigName, DistanceUnit swigEnum) {
|
||
|
|
this.swigName = swigName;
|
||
|
|
this.swigValue = swigEnum.swigValue;
|
||
|
|
swigNext = this.swigValue+1;
|
||
|
|
}
|
||
|
|
|
||
|
|
private static DistanceUnit[] swigValues = { CM, INCH };
|
||
|
|
private static int swigNext = 0;
|
||
|
|
private final int swigValue;
|
||
|
|
private final String swigName;
|
||
|
|
}
|
||
|
|
|