/** * <copyright> * </copyright> * * $Id$ */ package orgomg.cwm.management.warehouseprocess.datatype.impl; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EDataType; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.EPackage; import org.eclipse.emf.ecore.impl.EFactoryImpl; import org.eclipse.emf.ecore.plugin.EcorePlugin; import orgomg.cwm.management.warehouseprocess.datatype.*; /** * <!-- begin-user-doc --> * An implementation of the model <b>Factory</b>. * <!-- end-user-doc --> * @generated */ public class DatatypeFactoryImpl extends EFactoryImpl implements DatatypeFactory { /** * Creates the default factory implementation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static DatatypeFactory init() { try { DatatypeFactory theDatatypeFactory = (DatatypeFactory)EPackage.Registry.INSTANCE.getEFactory("http:///orgomg/cwm/management/warehouseprocess/datatype.ecore"); if (theDatatypeFactory != null) { return theDatatypeFactory; } } catch (Exception exception) { EcorePlugin.INSTANCE.log(exception); } return new DatatypeFactoryImpl(); } /** * Creates an instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DatatypeFactoryImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public EObject create(EClass eClass) { switch (eClass.getClassifierID()) { default: throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object createFromString(EDataType eDataType, String initialValue) { switch (eDataType.getClassifierID()) { case DatatypePackage.RECURRING_TYPE: return createRecurringTypeFromString(eDataType, initialValue); case DatatypePackage.DAY_OF_WEEK: return createDayOfWeekFromString(eDataType, initialValue); case DatatypePackage.WAIT_RULE_TYPE: return createWaitRuleTypeFromString(eDataType, initialValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String convertToString(EDataType eDataType, Object instanceValue) { switch (eDataType.getClassifierID()) { case DatatypePackage.RECURRING_TYPE: return convertRecurringTypeToString(eDataType, instanceValue); case DatatypePackage.DAY_OF_WEEK: return convertDayOfWeekToString(eDataType, instanceValue); case DatatypePackage.WAIT_RULE_TYPE: return convertWaitRuleTypeToString(eDataType, instanceValue); default: throw new IllegalArgumentException("The datatype '" + eDataType.getName() + "' is not a valid classifier"); } } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RecurringType createRecurringTypeFromString(EDataType eDataType, String initialValue) { RecurringType result = RecurringType.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertRecurringTypeToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DayOfWeek createDayOfWeekFromString(EDataType eDataType, String initialValue) { DayOfWeek result = DayOfWeek.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertDayOfWeekToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public WaitRuleType createWaitRuleTypeFromString(EDataType eDataType, String initialValue) { WaitRuleType result = WaitRuleType.get(initialValue); if (result == null) throw new IllegalArgumentException("The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String convertWaitRuleTypeToString(EDataType eDataType, Object instanceValue) { return instanceValue == null ? null : instanceValue.toString(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DatatypePackage getDatatypePackage() { return (DatatypePackage)getEPackage(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @deprecated * @generated */ @Deprecated public static DatatypePackage getPackage() { return DatatypePackage.eINSTANCE; } } //DatatypeFactoryImpl