19 package testsuite.clusterj.model;
21 import com.mysql.clusterj.annotation.Column;
22 import com.mysql.clusterj.annotation.Index;
23 import com.mysql.clusterj.annotation.Indices;
24 import com.mysql.clusterj.annotation.PersistenceCapable;
25 import com.mysql.clusterj.annotation.PrimaryKey;
28 @Index(
name=
"idx_int_not_null_both", columns=@Column(
name=
"int_not_null_both")),
29 @Index(
name=
"idx_int_null_both", columns=@Column(
name=
"int_null_both")),
30 @Index(
name=
"idx_byte_not_null_both", columns=@Column(
name=
"byte_not_null_both")),
31 @Index(
name=
"idx_byte_null_both", columns=@Column(
name=
"byte_null_both")),
32 @Index(
name=
"idx_short_not_null_both", columns=@Column(
name=
"short_not_null_both")),
33 @Index(
name=
"idx_short_null_both", columns=@Column(
name=
"short_null_both")),
34 @Index(
name=
"idx_long_not_null_both", columns=@Column(
name=
"long_not_null_both")),
35 @Index(
name=
"idx_long_null_both", columns=@Column(
name=
"long_null_both"))
37 @PersistenceCapable(
table=
"allprimitives")
38 @PrimaryKey(column=
"id")
47 int getInt_not_null_hash();
48 void setInt_not_null_hash(
int value);
51 int getInt_not_null_btree();
52 void setInt_not_null_btree(
int value);
54 int getInt_not_null_both();
55 void setInt_not_null_both(
int value);
57 int getInt_not_null_none();
58 void setInt_not_null_none(
int value);
61 Integer getInt_null_hash();
62 void setInt_null_hash(Integer value);
65 Integer getInt_null_btree();
66 void setInt_null_btree(Integer value);
68 Integer getInt_null_both();
69 void setInt_null_both(Integer value);
71 Integer getInt_null_none();
72 void setInt_null_none(Integer value);
77 byte getByte_not_null_hash();
78 void setByte_not_null_hash(byte value);
81 byte getByte_not_null_btree();
82 void setByte_not_null_btree(byte value);
84 byte getByte_not_null_both();
85 void setByte_not_null_both(byte value);
87 byte getByte_not_null_none();
88 void setByte_not_null_none(byte value);
91 Byte getByte_null_hash();
92 void setByte_null_hash(Byte value);
95 Byte getByte_null_btree();
96 void setByte_null_btree(Byte value);
98 Byte getByte_null_both();
99 void setByte_null_both(Byte value);
101 Byte getByte_null_none();
102 void setByte_null_none(Byte value);
107 short getShort_not_null_hash();
108 void setShort_not_null_hash(
short value);
111 short getShort_not_null_btree();
112 void setShort_not_null_btree(
short value);
114 short getShort_not_null_both();
115 void setShort_not_null_both(
short value);
117 short getShort_not_null_none();
118 void setShort_not_null_none(
short value);
121 Short getShort_null_hash();
122 void setShort_null_hash(Short value);
125 Short getShort_null_btree();
126 void setShort_null_btree(Short value);
128 Short getShort_null_both();
129 void setShort_null_both(Short value);
131 Short getShort_null_none();
132 void setShort_null_none(Short value);
137 long getLong_not_null_hash();
138 void setLong_not_null_hash(
long value);
141 long getLong_not_null_btree();
142 void setLong_not_null_btree(
long value);
144 long getLong_not_null_both();
145 void setLong_not_null_both(
long value);
147 long getLong_not_null_none();
148 void setLong_not_null_none(
long value);
151 Long getLong_null_hash();
152 void setLong_null_hash(Long value);
155 Long getLong_null_btree();
156 void setLong_null_btree(Long value);
158 Long getLong_null_both();
159 void setLong_null_both(Long value);
161 Long getLong_null_none();
162 void setLong_null_none(Long value);