58 lines
1.9 KiB
Java
58 lines
1.9 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 PressureUnit {
|
|
public final static PressureUnit PA = new PressureUnit("PA");
|
|
public final static PressureUnit BAR = new PressureUnit("BAR");
|
|
public final static PressureUnit ATM = new PressureUnit("ATM");
|
|
public final static PressureUnit TORR = new PressureUnit("TORR");
|
|
public final static PressureUnit PSI = new PressureUnit("PSI");
|
|
|
|
public final int swigValue() {
|
|
return swigValue;
|
|
}
|
|
|
|
public String toString() {
|
|
return swigName;
|
|
}
|
|
|
|
public static PressureUnit 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 " + PressureUnit.class + " with value " + swigValue);
|
|
}
|
|
|
|
private PressureUnit(String swigName) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigNext++;
|
|
}
|
|
|
|
private PressureUnit(String swigName, int swigValue) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigValue;
|
|
swigNext = swigValue+1;
|
|
}
|
|
|
|
private PressureUnit(String swigName, PressureUnit swigEnum) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigEnum.swigValue;
|
|
swigNext = this.swigValue+1;
|
|
}
|
|
|
|
private static PressureUnit[] swigValues = { PA, BAR, ATM, TORR, PSI };
|
|
private static int swigNext = 0;
|
|
private final int swigValue;
|
|
private final String swigName;
|
|
}
|
|
|