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

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

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

/**
 * A failure to edit the access list of a document.
 */
public final class FailedResult {

    private FailedResult() {}
    /**
     * Get list of users whose access was to be granted/revoked
     */
    public final UserAccessErr [] getUsers() {
        UserAccessErr [] ret = do_getUsers(mNativeObj);

        return ret;
    }
    private static native UserAccessErr [] do_getUsers(long self);
    /**
     * Get list of groups whose access was to be granted/revoked
     */
    public final GroupAccessErr [] getGroups() {
        GroupAccessErr [] ret = do_getGroups(mNativeObj);

        return ret;
    }
    private static native GroupAccessErr [] do_getGroups(long self);
    /**
     * Utility method to check if the list of failures is empty
     */
    public final boolean isEmpty() {
        boolean ret = do_isEmpty(mNativeObj);

        return ret;
    }
    private static native boolean do_isEmpty(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(FailedResult 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*/ FailedResult(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy