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 DeviceId clone() {
long ret = do_clone(mNativeObj);
DeviceId convRet = new DeviceId(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_clone(long self);
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;
/**
* This implementation calls native code, which means it's relatively slow.
*/
@Override
public int hashCode() {
return Long.hashCode(this.getId());
}
public boolean equals(Object obj) {
if(obj instanceof DeviceId){
DeviceId id = (DeviceId) obj;
return id.getId() == this.getId();
}
return false;
}
}