We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052e8b6 commit b0270f1Copy full SHA for b0270f1
objectbox-java/src/main/java/io/objectbox/BoxStore.java
@@ -132,14 +132,18 @@ public static synchronized boolean clearDefaultStore() {
132
return existedBefore;
133
}
134
135
- /** Gets the Version of ObjectBox Java. */
+ /**
136
+ * Returns the version of this ObjectBox Java SDK.
137
+ */
138
public static String getVersion() {
139
return VERSION;
140
141
142
static native String nativeGetVersion();
143
- /** Gets the Version of ObjectBox Core. */
144
145
+ * Returns the version of the loaded ObjectBox database library.
146
147
public static String getVersionNative() {
148
NativeLibraryLoader.ensureLoaded();
149
return nativeGetVersion();
0 commit comments