fiftyone.devicedetection.hash.engine.onpremise.interop.swig.IntegerValueSwig Maven / Gradle / Ivy
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org).
* Version 4.0.2
*
* Do not make changes to this file unless you know what you are doing--modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package fiftyone.devicedetection.hash.engine.onpremise.interop.swig;
public class IntegerValueSwig implements AutoCloseable {
private transient long swigCPtr;
protected transient boolean swigCMemOwn;
protected IntegerValueSwig(long cPtr, boolean cMemoryOwn) {
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
protected static long getCPtr(IntegerValueSwig obj) {
return (obj == null) ? 0 : obj.swigCPtr;
}
public synchronized void delete() {
if (swigCPtr != 0) {
if (swigCMemOwn) {
swigCMemOwn = false;
DeviceDetectionHashEngineModuleJNI.delete_IntegerValueSwig(swigCPtr);
}
swigCPtr = 0;
}
}
@Override
public void close() {
this.delete();
}
public IntegerValueSwig() {
this(DeviceDetectionHashEngineModuleJNI.new_IntegerValueSwig(), true);
}
public boolean hasValue() {
return DeviceDetectionHashEngineModuleJNI.IntegerValueSwig_hasValue(swigCPtr, this);
}
public String getNoValueMessage() {
return DeviceDetectionHashEngineModuleJNI.IntegerValueSwig_getNoValueMessage(swigCPtr, this);
}
public int getValue() {
return DeviceDetectionHashEngineModuleJNI.IntegerValueSwig_getValue(swigCPtr, this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy