@@ -27,7 +27,7 @@ public enum Action {
27
27
* <p>
28
28
* Valid in JPA; compatible with Hibernate's HBM2DDL action of the same name.
29
29
*/
30
- NONE ( "none" ) ,
30
+ NONE ,
31
31
/**
32
32
* Create the schema.
33
33
* <p>
@@ -36,22 +36,22 @@ public enum Action {
36
36
*
37
37
* @see org.hibernate.tool.schema.spi.SchemaCreator
38
38
*/
39
- CREATE_ONLY ( "create" , "create-only" ) ,
39
+ CREATE_ONLY ,
40
40
/**
41
41
* Drop the schema.
42
42
* <p>
43
43
* Valid in JPA; compatible with Hibernate's HBM2DDL action of the same name.
44
44
*
45
45
* @see org.hibernate.tool.schema.spi.SchemaDropper
46
46
*/
47
- DROP ( "drop" ) ,
47
+ DROP ,
48
48
/**
49
49
* Drop and then recreate the schema.
50
50
*
51
51
* @see org.hibernate.tool.schema.spi.SchemaDropper
52
52
* @see org.hibernate.tool.schema.spi.SchemaCreator
53
53
*/
54
- CREATE ( "drop-and-create" , "create" ) ,
54
+ CREATE ,
55
55
/**
56
56
* Drop the schema and then recreate it on {@code SessionFactory} startup.
57
57
* Additionally, drop the schema on {@code SessionFactory} shutdown.
@@ -70,23 +70,23 @@ public enum Action {
70
70
* @see org.hibernate.tool.schema.spi.SchemaDropper
71
71
* @see org.hibernate.tool.schema.spi.SchemaCreator
72
72
*/
73
- CREATE_DROP ( null , "create-drop" ) ,
73
+ CREATE_DROP ,
74
74
/**
75
75
* Validate the database schema.
76
76
* <p>
77
77
* This action is not defined by JPA.
78
78
*
79
79
* @see org.hibernate.tool.schema.spi.SchemaValidator
80
80
*/
81
- VALIDATE ( null , "validate" ) ,
81
+ VALIDATE ,
82
82
/**
83
83
* Update (alter) the database schema.
84
84
* <p>
85
85
* This action is not defined by JPA.
86
86
*
87
87
* @see org.hibernate.tool.schema.spi.SchemaMigrator
88
88
*/
89
- UPDATE ( null , "update" ) ,
89
+ UPDATE ,
90
90
/**
91
91
* Truncate the tables in the schema.
92
92
* <p>
@@ -96,31 +96,47 @@ public enum Action {
96
96
*
97
97
* @since 6.2
98
98
*/
99
- TRUNCATE ( null , null );
100
-
101
- private final String externalJpaName ;
102
- private final String externalHbm2ddlName ;
103
-
104
- Action (String externalJpaName ) {
105
- this ( externalJpaName , externalJpaName );
106
- }
107
-
108
- Action (String externalJpaName , String externalHbm2ddlName ) {
109
- this .externalJpaName = externalJpaName ;
110
- this .externalHbm2ddlName = externalHbm2ddlName ;
111
- }
99
+ TRUNCATE ;
112
100
113
101
public String getExternalJpaName () {
114
- return externalJpaName ;
102
+ switch (this ) {
103
+ case NONE :
104
+ return "none" ;
105
+ case CREATE_ONLY :
106
+ return "create" ;
107
+ case DROP :
108
+ return "drop" ;
109
+ case CREATE_DROP :
110
+ return "drop-and-create" ;
111
+ default :
112
+ return null ;
113
+ }
115
114
}
116
115
117
116
public String getExternalHbm2ddlName () {
118
- return externalHbm2ddlName ;
117
+ switch (this ) {
118
+ case NONE :
119
+ return "none" ;
120
+ case CREATE_ONLY :
121
+ return "create-only" ;
122
+ case DROP :
123
+ return "drop" ;
124
+ case CREATE :
125
+ return "create" ;
126
+ case CREATE_DROP :
127
+ return "create-drop" ;
128
+ case VALIDATE :
129
+ return "validate" ;
130
+ case UPDATE :
131
+ return "update" ;
132
+ default :
133
+ return null ;
134
+ }
119
135
}
120
136
121
137
@ Override
122
138
public String toString () {
123
- return getClass ().getSimpleName () + "(externalJpaName=" + externalJpaName + ", externalHbm2ddlName=" + externalHbm2ddlName + ")" ;
139
+ return getClass ().getSimpleName () + "(externalJpaName=" + getExternalJpaName () + ", externalHbm2ddlName=" + getExternalHbm2ddlName () + ")" ;
124
140
}
125
141
126
142
/**
@@ -144,29 +160,29 @@ public static Action interpretJpaSetting(Object value) {
144
160
}
145
161
146
162
final String name = value .toString ().trim ();
147
- if ( name .isEmpty () || NONE .externalJpaName .equals ( name ) ) {
163
+ if ( name .isEmpty () || NONE .getExternalJpaName () .equals ( name ) ) {
148
164
// default is NONE
149
165
return NONE ;
150
166
}
151
167
152
168
// prefer JPA external names
153
169
for ( Action action : values () ) {
154
- if ( action .externalJpaName == null ) {
170
+ if ( action .getExternalJpaName () == null ) {
155
171
continue ;
156
172
}
157
173
158
- if ( action .externalJpaName .equals ( name ) ) {
174
+ if ( action .getExternalJpaName () .equals ( name ) ) {
159
175
return action ;
160
176
}
161
177
}
162
178
163
179
// then check hbm2ddl names
164
180
for ( Action action : values () ) {
165
- if ( action .externalHbm2ddlName == null ) {
181
+ if ( action .getExternalHbm2ddlName () == null ) {
166
182
continue ;
167
183
}
168
184
169
- if ( action .externalHbm2ddlName .equals ( name ) ) {
185
+ if ( action .getExternalHbm2ddlName () .equals ( name ) ) {
170
186
return action ;
171
187
}
172
188
}
@@ -200,29 +216,29 @@ public static Action interpretHbm2ddlSetting(Object value) {
200
216
}
201
217
202
218
final String name = value .toString ().trim ();
203
- if ( name .isEmpty () || NONE .externalJpaName .equals ( name ) ) {
219
+ if ( name .isEmpty () || NONE .getExternalJpaName () .equals ( name ) ) {
204
220
// default is NONE
205
221
return NONE ;
206
222
}
207
223
208
224
// prefer hbm2ddl names
209
225
for ( Action action : values () ) {
210
- if ( action .externalHbm2ddlName == null ) {
226
+ if ( action .getExternalHbm2ddlName () == null ) {
211
227
continue ;
212
228
}
213
229
214
- if ( action .externalHbm2ddlName .equals ( name ) ) {
230
+ if ( action .getExternalHbm2ddlName () .equals ( name ) ) {
215
231
return hbm2ddlSetting ( action );
216
232
}
217
233
}
218
234
219
235
// then check JPA external names
220
236
for ( Action action : values () ) {
221
- if ( action .externalJpaName == null ) {
237
+ if ( action .getExternalJpaName () == null ) {
222
238
continue ;
223
239
}
224
240
225
- if ( action .externalJpaName .equals ( name ) ) {
241
+ if ( action .getExternalJpaName () .equals ( name ) ) {
226
242
return hbm2ddlSetting ( action );
227
243
}
228
244
}
0 commit comments