/** * Returns the '<em><b>Industrial Dual020m ASub Ids</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public static IndustrialDual020mASubIds getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { IndustrialDual020mASubIds result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; }
/** * Returns the '<em><b>Industrial Dual020m ASub Ids</b></em>' literal with the specified literal * value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated */ public static IndustrialDual020mASubIds get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { IndustrialDual020mASubIds result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; }