/** * * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public Domain createDomainFromString(EDataType eDataType, String initialValue) { Domain result = Domain.get(initialValue); if (result == null) throw new IllegalArgumentException( "The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; }