io.realm.kotlin.internal.interop.realm_schema_mode_e Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jni-swig-stub Show documentation
Show all versions of jni-swig-stub Show documentation
Wrapper for interacting with Realm Kotlin native code from the JVM. This artifact is not supposed to be consumed directly, but through 'io.realm.kotlin:gradle-plugin:3.0.0' instead.
The newest version!
/* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (https://www.swig.org).
* Version 4.2.1
*
* Do not make changes to this file unless you know what you are doing - modify
* the SWIG interface file instead.
* ----------------------------------------------------------------------------- */
package io.realm.kotlin.internal.interop;
public final class realm_schema_mode_e {
public final static int RLM_SCHEMA_MODE_AUTOMATIC = 0;
public final static int RLM_SCHEMA_MODE_IMMUTABLE = RLM_SCHEMA_MODE_AUTOMATIC + 1;
public final static int RLM_SCHEMA_MODE_READ_ONLY = RLM_SCHEMA_MODE_IMMUTABLE + 1;
public final static int RLM_SCHEMA_MODE_SOFT_RESET_FILE = RLM_SCHEMA_MODE_READ_ONLY + 1;
public final static int RLM_SCHEMA_MODE_HARD_RESET_FILE = RLM_SCHEMA_MODE_SOFT_RESET_FILE + 1;
public final static int RLM_SCHEMA_MODE_ADDITIVE_DISCOVERED = RLM_SCHEMA_MODE_HARD_RESET_FILE + 1;
public final static int RLM_SCHEMA_MODE_ADDITIVE_EXPLICIT = RLM_SCHEMA_MODE_ADDITIVE_DISCOVERED + 1;
public final static int RLM_SCHEMA_MODE_MANUAL = RLM_SCHEMA_MODE_ADDITIVE_EXPLICIT + 1;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy