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

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

There is a newer version: 0.16.0
Show newest version
// 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 int hashCode() {
        int ret = do_hashCode(mNativeObj);

        return ret;
    }
    private static native int do_hashCode(long self);

    private final boolean rustEq(DocumentName 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*/ DocumentName(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;

    public boolean equals(Object obj) {
        if(obj instanceof DocumentName){
            DocumentName other = (DocumentName) obj;
            return other.rustEq(this);
        }
        return false;
    }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy