Files
upm/build/src/bmx055/BMG160_INT_STATUS_1_BITS_T.java

58 lines
2.8 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_INT_STATUS_1_BITS_T {
public final static BMG160_INT_STATUS_1_BITS_T _BMG160_INT_STATUS_1_RESERVED_BITS = new BMG160_INT_STATUS_1_BITS_T("_BMG160_INT_STATUS_1_RESERVED_BITS", javaupm_bmx055JNI._BMG160_INT_STATUS_1_RESERVED_BITS_get());
public final static BMG160_INT_STATUS_1_BITS_T BMG160_INT_STATUS_1_FIFO_INT = new BMG160_INT_STATUS_1_BITS_T("BMG160_INT_STATUS_1_FIFO_INT", javaupm_bmx055JNI.BMG160_INT_STATUS_1_FIFO_INT_get());
public final static BMG160_INT_STATUS_1_BITS_T BMG160_INT_STATUS_1_FAST_OFFSET_INT = new BMG160_INT_STATUS_1_BITS_T("BMG160_INT_STATUS_1_FAST_OFFSET_INT", javaupm_bmx055JNI.BMG160_INT_STATUS_1_FAST_OFFSET_INT_get());
public final static BMG160_INT_STATUS_1_BITS_T BMG160_INT_STATUS_1_AUTO_OFFSET_INT = new BMG160_INT_STATUS_1_BITS_T("BMG160_INT_STATUS_1_AUTO_OFFSET_INT", javaupm_bmx055JNI.BMG160_INT_STATUS_1_AUTO_OFFSET_INT_get());
public final static BMG160_INT_STATUS_1_BITS_T BMG160_INT_STATUS_1_DATA_INT = new BMG160_INT_STATUS_1_BITS_T("BMG160_INT_STATUS_1_DATA_INT", javaupm_bmx055JNI.BMG160_INT_STATUS_1_DATA_INT_get());
public final int swigValue() {
return swigValue;
}
public String toString() {
return swigName;
}
public static BMG160_INT_STATUS_1_BITS_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_INT_STATUS_1_BITS_T.class + " with value " + swigValue);
}
private BMG160_INT_STATUS_1_BITS_T(String swigName) {
this.swigName = swigName;
this.swigValue = swigNext++;
}
private BMG160_INT_STATUS_1_BITS_T(String swigName, int swigValue) {
this.swigName = swigName;
this.swigValue = swigValue;
swigNext = swigValue+1;
}
private BMG160_INT_STATUS_1_BITS_T(String swigName, BMG160_INT_STATUS_1_BITS_T swigEnum) {
this.swigName = swigName;
this.swigValue = swigEnum.swigValue;
swigNext = this.swigValue+1;
}
private static BMG160_INT_STATUS_1_BITS_T[] swigValues = { _BMG160_INT_STATUS_1_RESERVED_BITS, BMG160_INT_STATUS_1_FIFO_INT, BMG160_INT_STATUS_1_FAST_OFFSET_INT, BMG160_INT_STATUS_1_AUTO_OFFSET_INT, BMG160_INT_STATUS_1_DATA_INT };
private static int swigNext = 0;
private final int swigValue;
private final String swigName;
}