Apex - instrução if elseif else
A if declaração pode ser seguida por um opcional else if...else declaração, que é muito útil para testar várias condições usando uma única if...else if declaração.
Sintaxe
A sintaxe de um if...else if...else declaração é a seguinte -
if boolean_expression_1 {
/* Executes when the boolean expression 1 is true */
} else if boolean_expression_2 {
/* Executes when the boolean expression 2 is true */
} else if boolean_expression_3 {
/* Executes when the boolean expression 3 is true */
} else {
/* Executes when the none of the above condition is true */
}
Exemplo
Suponha que nossa empresa química tenha clientes de duas categorias - Premium e Normal. Com base no tipo de cliente, devemos oferecer descontos e outros benefícios, como serviço e suporte pós-venda. O programa a seguir mostra uma implementação do mesmo.
//Execute this code in Developer Console and see the Output
String customerName = 'Glenmarkone'; //premium customer
Decimal discountRate = 0;
Boolean premiumSupport = false;
if (customerName == 'Glenmarkone') {
discountRate = 0.1; //when condition is met this block will be executed
premiumSupport = true;
System.debug('Special Discount given as Customer is Premium');
}else if (customerName == 'Joe') {
discountRate = 0.5; //when condition is met this block will be executed
premiumSupport = false;
System.debug('Special Discount not given as Customer is not Premium');
}else {
discountRate = 0.05; //when condition is not met and customer is normal
premiumSupport = false;
System.debug('Special Discount not given as Customer is not Premium');
}