In the following method I need to define that only set the value if its not null and if the value is greater than "0.00" How do I define that.
String postagePaid1 = trackInfo.getPostage();
if(postagePaid1 != null && ????) {
claim.setClPtsPostageFee(new BigDecimal(postagePaid1));
}
"foo"? Or"1.17€"?