/**
  * Creates an instance of the EDataType: EvenType from a String.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @param value the string value to convert to an object
  * @return the instance of the data type, if value == null then null is returned
  * @generated
  */
 public EvenType createEvenTypeFromString(String value) {
   if (value == null) {
     return null;
   }
   return EvenType.get(value);
 }
 /**
  * Converts the EDataType: EvenType to a String.
  * <!-- begin-user-doc -->
  * <!-- end-user-doc -->
  *
  * @param value the object to convert
  * @return the String representing the value, if value == null then null is returned
  * @generated
  */
 public String convertEvenTypeToString(EvenType value) {
   if (value == null) {
     return null;
   }
   return value.toString();
 }