Field ROUND_HALF_EVEN
Field type: int
Member of:
java.math.BigDecimal
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return new BigDecimal(body[i][j]).setScale(this.getScale(), BigDecimal.ROUND_HALF_EVEN);
2
b = b.setScale(2, BigDecimal.ROUND_HALF_EVEN);
3
retVal[i][j] = new BigDecimal(body[i][j]).setScale(this.getScale(), BigDecimal.ROUND_HALF_EVEN);
4
this.output = this.inputA.divide(this.inputB, BigDecimal.ROUND_HALF_EVEN);
5
java.math.BigDecimal.ROUND_HALF_EVEN);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.