com.ironcorelabs.sdk.DocumentName Maven / Gradle / Ivy
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;
/**
* Document name type. Validates that the provided document name isn't an empty string
*/
public final class DocumentName {
private DocumentName() {}
public static DocumentName validate(String s) throws Exception {
long ret = do_validate(s);
DocumentName convRet = new DocumentName(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_validate(String s) throws Exception;
public final String getName() {
String ret = do_getName(mNativeObj);
return ret;
}
private static native String do_getName(long self);
public final DocumentName clone() {
long ret = do_clone(mNativeObj);
DocumentName convRet = new DocumentName(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*/ DocumentName(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 this.getName().hashCode();
}
public boolean equals(Object obj) {
if(obj instanceof DocumentName){
DocumentName name = (DocumentName) obj;
return name.getName().equals(this.getName());
}
return false;
}
}