Here you can find the source of compare(BigDecimal one, BigDecimal other)
Parameter | Description |
---|---|
one | a parameter |
other | a parameter |
public static final int compare(BigDecimal one, BigDecimal other)
//package com.java2s; import java.math.BigDecimal; public class Main { /**//from w w w . jav a 2 s. co m * Vergelijkt 2 BigDecimals (nullsafe). returned een negatieve waarde als one < other * is, 0 als beide gelijk zijn, 1 als one > other is. Een null waarde is altijd * kleiner dan een andere waarde * * @param one * @param other * @return een negatieve waarde als one < other is, 0 als beide gelijk zijn, 1 als one * > other is */ public static final int compare(BigDecimal one, BigDecimal other) { if (one == null && other == null) return 0; if (one == null) return -1; else if (other == null) return 1; return one.compareTo(other); } }