61 lines
3.4 KiB
Java
61 lines
3.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 BMA250E_INT_RST_LATCH_BITS_T {
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T _BMA250E_INT_RST_LATCH_RESERVED_BITS = new BMA250E_INT_RST_LATCH_BITS_T("_BMA250E_INT_RST_LATCH_RESERVED_BITS", javaupm_bmx055JNI._BMA250E_INT_RST_LATCH_RESERVED_BITS_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T BMA250E_INT_RST_LATCH0 = new BMA250E_INT_RST_LATCH_BITS_T("BMA250E_INT_RST_LATCH0", javaupm_bmx055JNI.BMA250E_INT_RST_LATCH0_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T BMA250E_INT_RST_LATCH1 = new BMA250E_INT_RST_LATCH_BITS_T("BMA250E_INT_RST_LATCH1", javaupm_bmx055JNI.BMA250E_INT_RST_LATCH1_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T BMA250E_INT_RST_LATCH2 = new BMA250E_INT_RST_LATCH_BITS_T("BMA250E_INT_RST_LATCH2", javaupm_bmx055JNI.BMA250E_INT_RST_LATCH2_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T BMA250E_INT_RST_LATCH3 = new BMA250E_INT_RST_LATCH_BITS_T("BMA250E_INT_RST_LATCH3", javaupm_bmx055JNI.BMA250E_INT_RST_LATCH3_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T _BMA250E_INT_RST_LATCH_MASK = new BMA250E_INT_RST_LATCH_BITS_T("_BMA250E_INT_RST_LATCH_MASK", javaupm_bmx055JNI._BMA250E_INT_RST_LATCH_MASK_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T _BMA250E_INT_RST_LATCH_SHIFT = new BMA250E_INT_RST_LATCH_BITS_T("_BMA250E_INT_RST_LATCH_SHIFT", javaupm_bmx055JNI._BMA250E_INT_RST_LATCH_SHIFT_get());
|
|
public final static BMA250E_INT_RST_LATCH_BITS_T BMA250E_INT_RST_LATCH_RESET_INT = new BMA250E_INT_RST_LATCH_BITS_T("BMA250E_INT_RST_LATCH_RESET_INT", javaupm_bmx055JNI.BMA250E_INT_RST_LATCH_RESET_INT_get());
|
|
|
|
public final int swigValue() {
|
|
return swigValue;
|
|
}
|
|
|
|
public String toString() {
|
|
return swigName;
|
|
}
|
|
|
|
public static BMA250E_INT_RST_LATCH_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 " + BMA250E_INT_RST_LATCH_BITS_T.class + " with value " + swigValue);
|
|
}
|
|
|
|
private BMA250E_INT_RST_LATCH_BITS_T(String swigName) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigNext++;
|
|
}
|
|
|
|
private BMA250E_INT_RST_LATCH_BITS_T(String swigName, int swigValue) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigValue;
|
|
swigNext = swigValue+1;
|
|
}
|
|
|
|
private BMA250E_INT_RST_LATCH_BITS_T(String swigName, BMA250E_INT_RST_LATCH_BITS_T swigEnum) {
|
|
this.swigName = swigName;
|
|
this.swigValue = swigEnum.swigValue;
|
|
swigNext = this.swigValue+1;
|
|
}
|
|
|
|
private static BMA250E_INT_RST_LATCH_BITS_T[] swigValues = { _BMA250E_INT_RST_LATCH_RESERVED_BITS, BMA250E_INT_RST_LATCH0, BMA250E_INT_RST_LATCH1, BMA250E_INT_RST_LATCH2, BMA250E_INT_RST_LATCH3, _BMA250E_INT_RST_LATCH_MASK, _BMA250E_INT_RST_LATCH_SHIFT, BMA250E_INT_RST_LATCH_RESET_INT };
|
|
private static int swigNext = 0;
|
|
private final int swigValue;
|
|
private final String swigName;
|
|
}
|
|
|