1
-
2
1
/*
3
- * Copyright 2017 ObjectBox Ltd. All rights reserved.
2
+ * Copyright 2017-2024 ObjectBox Ltd. All rights reserved.
4
3
*
5
4
* Licensed under the Apache License, Version 2.0 (the "License");
6
5
* you may not use this file except in compliance with the License.
17
16
18
17
package io .objectbox ;
19
18
19
+ import java .util .Map ;
20
+
20
21
import io .objectbox .TestEntityCursor .Factory ;
21
22
import io .objectbox .annotation .apihint .Internal ;
22
23
import io .objectbox .converter .FlexObjectConverter ;
23
24
import io .objectbox .converter .StringFlexMapConverter ;
24
25
import io .objectbox .internal .CursorFactory ;
25
26
import io .objectbox .internal .IdGetter ;
26
27
27
- import java .util .Map ;
28
+ // NOTE: Instead of updating this by hand, copy changes from the internal integration test project after updating its
29
+ // TestEntity.
28
30
29
- // NOTE: Copied from a plugin project (& removed some unused Properties).
30
31
// THIS CODE IS GENERATED BY ObjectBox, DO NOT EDIT.
31
32
32
33
/**
@@ -82,7 +83,7 @@ public final class TestEntity_ implements EntityInfo<TestEntity> {
82
83
new io .objectbox .Property <>(__INSTANCE , 9 , 10 , byte [].class , "simpleByteArray" );
83
84
84
85
public final static io .objectbox .Property <TestEntity > simpleStringArray =
85
- new io .objectbox .Property <>(__INSTANCE , 10 , 11 , String [].class , "simpleStringArray" , false , "simpleStringArray" );
86
+ new io .objectbox .Property <>(__INSTANCE , 10 , 11 , String [].class , "simpleStringArray" );
86
87
87
88
public final static io .objectbox .Property <TestEntity > simpleStringList =
88
89
new io .objectbox .Property <>(__INSTANCE , 11 , 15 , java .util .List .class , "simpleStringList" );
@@ -103,19 +104,19 @@ public final class TestEntity_ implements EntityInfo<TestEntity> {
103
104
new io .objectbox .Property <>(__INSTANCE , 16 , 17 , byte [].class , "flexProperty" , false , "flexProperty" , FlexObjectConverter .class , Object .class );
104
105
105
106
public final static io .objectbox .Property <TestEntity > shortArray =
106
- new io .objectbox .Property <>(__INSTANCE , 17 , 19 , short [].class , "shortArray" );
107
+ new io .objectbox .Property <>(__INSTANCE , 17 , 18 , short [].class , "shortArray" );
107
108
108
109
public final static io .objectbox .Property <TestEntity > charArray =
109
- new io .objectbox .Property <>(__INSTANCE , 18 , 20 , char [].class , "charArray" );
110
+ new io .objectbox .Property <>(__INSTANCE , 18 , 19 , char [].class , "charArray" );
110
111
111
112
public final static io .objectbox .Property <TestEntity > intArray =
112
- new io .objectbox .Property <>(__INSTANCE , 19 , 21 , int [].class , "intArray" );
113
+ new io .objectbox .Property <>(__INSTANCE , 19 , 20 , int [].class , "intArray" );
113
114
114
115
public final static io .objectbox .Property <TestEntity > longArray =
115
- new io .objectbox .Property <>(__INSTANCE , 20 , 22 , long [].class , "longArray" );
116
+ new io .objectbox .Property <>(__INSTANCE , 20 , 21 , long [].class , "longArray" );
116
117
117
118
public final static io .objectbox .Property <TestEntity > floatArray =
118
- new io .objectbox .Property <>(__INSTANCE , 21 , 18 , float [].class , "floatArray" );
119
+ new io .objectbox .Property <>(__INSTANCE , 21 , 22 , float [].class , "floatArray" );
119
120
120
121
public final static io .objectbox .Property <TestEntity > doubleArray =
121
122
new io .objectbox .Property <>(__INSTANCE , 22 , 23 , double [].class , "doubleArray" );
0 commit comments