Method valueOf(long val)
Return type:
java.math.BigDecimal
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 java.math.BigDecimal.valueOf(Long.valueOf(nullValue).longValue());
2
return java.math.BigDecimal.valueOf(Long.valueOf(nullValue).longValue()).equals(realValue);
3
.divide(BigDecimal.valueOf(100), BigDecimal.ROUND_HALF_DOWN));
4
this.primaryKey = new NumberKey(BigDecimal.valueOf((long) primaryKey));
5
myBody[i] = BigDecimal.valueOf(val[i]);
6
args[1] = BigDecimal.valueOf(((Long) args[1]).longValue());
7
myBody[i][j] = BigDecimal.valueOf(val[i][j]);
8
toreturn = BigDecimal.valueOf(((Number)value).longValue());
9
bd = BigDecimal.valueOf(((Number)value).longValue());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.