blob: 76f9a32b9dbbe668790b764fafd3a7e9a0841b88 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2012 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.jpa.eclipselink.core.context.persistence;
import org.eclipse.jpt.jpa.core.context.persistence.PersistenceXmlEnumValue;
/**
* Weaving
*/
public enum Weaving implements PersistenceXmlEnumValue {
true_("true"), //$NON-NLS-1$
false_("false"), //$NON-NLS-1$
static_("static"); //$NON-NLS-1$
/**
* EclipseLink property value
*/
private final String propertyValue;
Weaving(String propertyValue) {
this.propertyValue = propertyValue;
}
/**
* The string used as the property value in the persistence.xml
*/
public String getPropertyValue() {
return this.propertyValue;
}
}