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