PersistenceContextSynchronizationType.java
package org.jboss.shrinkwrap.descriptor.api.javaee7;
/**
* This class implements the <code> persistence-context-synchronizationType </code> xsd type
*/
public enum PersistenceContextSynchronizationType
{
_SYNCHRONIZED("Synchronized"),
_UNSYNCHRONIZED("Unsynchronized");
private String value;
PersistenceContextSynchronizationType (String value) { this.value = value; }
public String toString() {return value;}
public static PersistenceContextSynchronizationType getFromStringValue(String value)
{
for(PersistenceContextSynchronizationType type: PersistenceContextSynchronizationType.values())
{
if(value != null && type.toString().equals(value))
{ return type;}
}
return null;
}
}