Skip to content

Commit 18ddbe1

Browse files
committed
cleanup Action enum
1 parent 2538c96 commit 18ddbe1

File tree

1 file changed

+49
-33
lines changed
  • hibernate-core/src/main/java/org/hibernate/tool/schema

1 file changed

+49
-33
lines changed

hibernate-core/src/main/java/org/hibernate/tool/schema/Action.java

+49-33
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public enum Action {
2727
* <p>
2828
* Valid in JPA; compatible with Hibernate's HBM2DDL action of the same name.
2929
*/
30-
NONE( "none" ),
30+
NONE,
3131
/**
3232
* Create the schema.
3333
* <p>
@@ -36,22 +36,22 @@ public enum Action {
3636
*
3737
* @see org.hibernate.tool.schema.spi.SchemaCreator
3838
*/
39-
CREATE_ONLY( "create", "create-only" ),
39+
CREATE_ONLY,
4040
/**
4141
* Drop the schema.
4242
* <p>
4343
* Valid in JPA; compatible with Hibernate's HBM2DDL action of the same name.
4444
*
4545
* @see org.hibernate.tool.schema.spi.SchemaDropper
4646
*/
47-
DROP( "drop" ),
47+
DROP,
4848
/**
4949
* Drop and then recreate the schema.
5050
*
5151
* @see org.hibernate.tool.schema.spi.SchemaDropper
5252
* @see org.hibernate.tool.schema.spi.SchemaCreator
5353
*/
54-
CREATE( "drop-and-create", "create" ),
54+
CREATE,
5555
/**
5656
* Drop the schema and then recreate it on {@code SessionFactory} startup.
5757
* Additionally, drop the schema on {@code SessionFactory} shutdown.
@@ -70,23 +70,23 @@ public enum Action {
7070
* @see org.hibernate.tool.schema.spi.SchemaDropper
7171
* @see org.hibernate.tool.schema.spi.SchemaCreator
7272
*/
73-
CREATE_DROP( null, "create-drop" ),
73+
CREATE_DROP,
7474
/**
7575
* Validate the database schema.
7676
* <p>
7777
* This action is not defined by JPA.
7878
*
7979
* @see org.hibernate.tool.schema.spi.SchemaValidator
8080
*/
81-
VALIDATE( null, "validate" ),
81+
VALIDATE,
8282
/**
8383
* Update (alter) the database schema.
8484
* <p>
8585
* This action is not defined by JPA.
8686
*
8787
* @see org.hibernate.tool.schema.spi.SchemaMigrator
8888
*/
89-
UPDATE( null, "update" ),
89+
UPDATE,
9090
/**
9191
* Truncate the tables in the schema.
9292
* <p>
@@ -96,31 +96,47 @@ public enum Action {
9696
*
9797
* @since 6.2
9898
*/
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;
112100

113101
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+
}
115114
}
116115

117116
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+
}
119135
}
120136

121137
@Override
122138
public String toString() {
123-
return getClass().getSimpleName() + "(externalJpaName=" + externalJpaName + ", externalHbm2ddlName=" + externalHbm2ddlName + ")";
139+
return getClass().getSimpleName() + "(externalJpaName=" + getExternalJpaName() + ", externalHbm2ddlName=" + getExternalHbm2ddlName() + ")";
124140
}
125141

126142
/**
@@ -144,29 +160,29 @@ public static Action interpretJpaSetting(Object value) {
144160
}
145161

146162
final String name = value.toString().trim();
147-
if ( name.isEmpty() || NONE.externalJpaName.equals( name ) ) {
163+
if ( name.isEmpty() || NONE.getExternalJpaName().equals( name ) ) {
148164
// default is NONE
149165
return NONE;
150166
}
151167

152168
// prefer JPA external names
153169
for ( Action action : values() ) {
154-
if ( action.externalJpaName == null ) {
170+
if ( action.getExternalJpaName() == null ) {
155171
continue;
156172
}
157173

158-
if ( action.externalJpaName.equals( name ) ) {
174+
if ( action.getExternalJpaName().equals( name ) ) {
159175
return action;
160176
}
161177
}
162178

163179
// then check hbm2ddl names
164180
for ( Action action : values() ) {
165-
if ( action.externalHbm2ddlName == null ) {
181+
if ( action.getExternalHbm2ddlName() == null ) {
166182
continue;
167183
}
168184

169-
if ( action.externalHbm2ddlName.equals( name ) ) {
185+
if ( action.getExternalHbm2ddlName().equals( name ) ) {
170186
return action;
171187
}
172188
}
@@ -200,29 +216,29 @@ public static Action interpretHbm2ddlSetting(Object value) {
200216
}
201217

202218
final String name = value.toString().trim();
203-
if ( name.isEmpty() || NONE.externalJpaName.equals( name ) ) {
219+
if ( name.isEmpty() || NONE.getExternalJpaName().equals( name ) ) {
204220
// default is NONE
205221
return NONE;
206222
}
207223

208224
// prefer hbm2ddl names
209225
for ( Action action : values() ) {
210-
if ( action.externalHbm2ddlName == null ) {
226+
if ( action.getExternalHbm2ddlName() == null ) {
211227
continue;
212228
}
213229

214-
if ( action.externalHbm2ddlName.equals( name ) ) {
230+
if ( action.getExternalHbm2ddlName().equals( name ) ) {
215231
return hbm2ddlSetting( action );
216232
}
217233
}
218234

219235
// then check JPA external names
220236
for ( Action action : values() ) {
221-
if ( action.externalJpaName == null ) {
237+
if ( action.getExternalJpaName() == null ) {
222238
continue;
223239
}
224240

225-
if ( action.externalJpaName.equals( name ) ) {
241+
if ( action.getExternalJpaName().equals( name ) ) {
226242
return hbm2ddlSetting( action );
227243
}
228244
}

0 commit comments

Comments
 (0)