Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 692a5cfe1ecc499c216522720ec811f7424c3572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
* Copyright (c) 2008 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
* 
* Contributors:
*     Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.eclipselink.core.context.persistence.schema.generation;

/**
 *  DdlGenerationType
 */
public enum DdlGenerationType {
	none, 
	create_tables, 
	drop_and_create_tables;
	
	// EclipseLink value string
	public static final String NONE = "none";
	public static final String CREATE_TABLES = "create-tables";
	public static final String DROP_AND_CREATE_TABLES = "drop-and-create-tables";
}

Back to the top