com.ironcorelabs.sdk.DeviceId Maven / Gradle / Ivy
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;
/**
* ID of a device. Device IDs are numeric and will always be greater than 0.
*/
public final class DeviceId {
private DeviceId() {}
public static DeviceId validate(long s) throws Exception {
long ret = do_validate(s);
DeviceId convRet = new DeviceId(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_validate(long s) throws Exception;
public final long getId() {
long ret = do_getId(mNativeObj);
return ret;
}
private static native long do_getId(long self);
public final int hashCode() {
int ret = do_hashCode(mNativeObj);
return ret;
}
private static native int do_hashCode(long self);
private final boolean rustEq(DeviceId o) {
long a0 = o.mNativeObj;
boolean ret = do_rustEq(mNativeObj, a0);
JNIReachabilityFence.reachabilityFence1(o);
return ret;
}
private static native boolean do_rustEq(long self, long o);
public synchronized void delete() {
if (mNativeObj != 0) {
do_delete(mNativeObj);
mNativeObj = 0;
}
}
@Override
protected void finalize() throws Throwable {
try {
delete();
}
finally {
super.finalize();
}
}
private static native void do_delete(long me);
/*package*/ DeviceId(InternalPointerMarker marker, long ptr) {
assert marker == InternalPointerMarker.RAW_PTR;
this.mNativeObj = ptr;
}
/*package*/ long mNativeObj;
public boolean equals(Object obj) {
if(obj instanceof DeviceId){
DeviceId other = (DeviceId) obj;
return other.rustEq(this);
}
return false;
}
}