How to check the value that is arriving in the EL, in the variable listItems for items?
<c:forEach var="pedido" items="${listPedidos}" varStatus="id">
<c:if test="${pedido.tipoPedido == 'MESA' }">
<tr>
<td>${id.count}</td>
<td>${pedido.mesa.numero}</td>
<td>${pedido.nomeCliente}</td>
<td>${pedido.valorTotal}</td>
<td> <fmt:formatDate type="time" value="${pedido.dtPost.time}" /> </td>
</tr>
</c:if>