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

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

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

/**
 * Options that can be specified creating a user.
 */
public final class UserCreateOpts {

    public UserCreateOpts() {
        mNativeObj = init();
    }
    private static native long init();

    public static UserCreateOpts create(boolean needsRotation) {
        long ret = do_create(needsRotation);
        UserCreateOpts convRet = new UserCreateOpts(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_create(boolean needsRotation);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy