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

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

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

/**
 * Represents a Group struct which is returned from document get to show the IDs and names of groups the document is visible to
 */
public final class VisibleGroup {

    private VisibleGroup() {}

    public final GroupId getId() {
        long ret = do_getId(mNativeObj);
        GroupId convRet = new GroupId(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getId(long self);

    public final java.util.Optional getName() {
        long ret = do_getName(mNativeObj);
        java.util.Optional convRet;
        if (ret != 0) {
            convRet = java.util.Optional.of(new GroupName(InternalPointerMarker.RAW_PTR, ret));
        } else {
            convRet = java.util.Optional.empty();
        }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy