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 da6359d commit b89b5b0Copy full SHA for b89b5b0
objectbox-java/src/main/java/io/objectbox/model/PropertyFlags.java
@@ -77,8 +77,9 @@ private PropertyFlags() { }
77
*/
78
public static final int INDEX_HASH64 = 4096;
79
/**
80
- * Unused yet: While our default are signed ints, queries and indexes need do know signing info.
81
- * Note: Don't combine with ID (IDs are always unsigned internally).
+ * In Java (and Kotlin) integers are stored as signed by default,
+ * but queries and indexes may choose to treat them as unsigned when using this flag.
82
+ * Note: Don't combine with ID, they are always unsigned internally.
83
84
public static final int UNSIGNED = 8192;
85
}
0 commit comments