57 lines
2.4 KiB
Java
57 lines
2.4 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_bmx055;
|
|
|
|
public final class BMG160_FIFO_DATA_SEL_T {
|
|
public final static BMG160_FIFO_DATA_SEL_T BMG160_FIFO_DATA_SEL_XYZ = new BMG160_FIFO_DATA_SEL_T("BMG160_FIFO_DATA_SEL_XYZ", javaupm_bmx055JNI.BMG160_FIFO_DATA_SEL_XYZ_get());
|
|
public final static BMG160_FIFO_DATA_SEL_T BMG160_FIFO_DATA_SEL_X = new BMG160_FIFO_DATA_SEL_T("BMG160_FIFO_DATA_SEL_X", javaupm_bmx055JNI.BMG160_FIFO_DATA_SEL_X_get());
|
|
public final static BMG160_FIFO_DATA_SEL_T BMG160_FIFO_DATA_SEL_Y = new BMG160_FIFO_DATA_SEL_T("BMG160_FIFO_DATA_SEL_Y", javaupm_bmx055JNI.BMG160_FIFO_DATA_SEL_Y_get());
|
|
public final static BMG160_FIFO_DATA_SEL_T BMG160_FIFO_DATA_SEL_Z = new BMG160_FIFO_DATA_SEL_T("BMG160_FIFO_DATA_SEL_Z", javaupm_bmx055JNI.BMG160_FIFO_DATA_SEL_Z_get());
|
|
|
|
public final int swigValue() {
|
|
return swigValue;
|
|
}
|
|
|
|
public String toString() {
|
|
return swigName;
|
|
}
|
|
|
|
public static BMG160_FIFO_DATA_SEL_T 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 " + BMG160_FIFO_DATA_SEL_T.class + " with value " + swigValue);
|
|
}
|
|
|
|
private BMG160_FIFO_DATA_SEL_T(String swigName) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigNext++;
|
|
}
|
|
|
|
private BMG160_FIFO_DATA_SEL_T(String swigName, int swigValue) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigValue;
|
|
swigNext = swigValue+1;
|
|
}
|
|
|
|
private BMG160_FIFO_DATA_SEL_T(String swigName, BMG160_FIFO_DATA_SEL_T swigEnum) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigEnum.swigValue;
|
|
swigNext = this.swigValue+1;
|
|
}
|
|
|
|
private static BMG160_FIFO_DATA_SEL_T[] swigValues = { BMG160_FIFO_DATA_SEL_XYZ, BMG160_FIFO_DATA_SEL_X, BMG160_FIFO_DATA_SEL_Y, BMG160_FIFO_DATA_SEL_Z };
|
|
private static int swigNext = 0;
|
|
private final int swigValue;
|
|
private final String swigName;
|
|
}
|
|
|