/** * Returns the '<em><b>Library</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public static Library getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Library result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; }
/** * Returns the '<em><b>Library</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public static Library get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Library result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; }
/** * * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public Library createLibraryFromString(EDataType eDataType, String initialValue) { Library result = Library.get(initialValue); if (result == null) throw new IllegalArgumentException( "The value '" + initialValue + "' is not a valid enumerator of '" + eDataType.getName() + "'"); return result; }