All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ironcorelabs.sdk.DocumentId Maven / Gradle / Ivy

There is a newer version: 0.16.0
Show newest version
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;

/**
 * ID of a document. Unique within the segment. Must match the regex `^[a-zA-Z0-9_.$#|@/:;=+'-]+$`.
 */
public final class DocumentId {

    private DocumentId() {}

    public static DocumentId validate(String s) throws Exception {
        long ret = do_validate(s);
        DocumentId convRet = new DocumentId(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_validate(String s) throws Exception;

    public final String getId() {
        String ret = do_getId(mNativeObj);

        return ret;
    }
    private static native String do_getId(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*/ DocumentId(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.getId().hashCode();
    }
    public boolean equals(Object obj) {
        if(obj instanceof DocumentId){
            DocumentId id = (DocumentId) obj;
            return id.getId().equals(this.getId());
        }
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy