org.eclipse.persistence.internal.helper.Helper.compareBigDecimals()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(3.8k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中org.eclipse.persistence.internal.helper.Helper.compareBigDecimals()方法的一些代码示例,展示了Helper.compareBigDecimals()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Helper.compareBigDecimals()方法的具体详情如下:
包路径:org.eclipse.persistence.internal.helper.Helper
类名称:Helper
方法名:compareBigDecimals

Helper.compareBigDecimals介绍

[英]Compare two BigDecimals. This is required because the .equals method of java.math.BigDecimal ensures that the scale of the two numbers are equal. Therefore 0.0 != 0.00.
[中]比较两个大小数。这是必需的,因为。等于java的方法。数学BigDecimal确保两个数字的比例相等。因此0.0!=0.00.

代码示例

代码示例来源:origin: com.haulmont.thirdparty/eclipselink

/**
 * Compare two potential arrays and return true if they are the same. Will
 * check for BigDecimals as well.
 */
public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  Class firstClass = firstValue.getClass();
  Class secondClass = secondValue.getClass();
  
  // Arrays must be checked for equality because default does identity
  if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
    return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
    return compareCharArrays((char[])firstValue, (char[])secondValue);
  } else if ((firstClass.isArray()) && (secondClass.isArray())) {
    return compareArrays((Object[])firstValue, (Object[])secondValue);
  } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
    // BigDecimals equals does not consider the precision correctly
    return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  }
  return false;   
}

代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

/**
 * Compare two potential arrays and return true if they are the same. Will
 * check for BigDecimals as well.
 */
public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  Class firstClass = firstValue.getClass();
  Class secondClass = secondValue.getClass();
  
  // Arrays must be checked for equality because default does identity
  if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
    return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
    return compareCharArrays((char[])firstValue, (char[])secondValue);
  } else if ((firstClass.isArray()) && (secondClass.isArray())) {
    return compareArrays((Object[])firstValue, (Object[])secondValue);
  } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
    // BigDecimals equals does not consider the precision correctly
    return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  }
  return false;   
}

代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core

/**
 * Compare two potential arrays and return true if they are the same. Will
 * check for BigDecimals as well.
 */
public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  Class firstClass = firstValue.getClass();
  Class secondClass = secondValue.getClass();
  // Arrays must be checked for equality because default does identity
  if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
    return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
    return compareCharArrays((char[])firstValue, (char[])secondValue);
  } else if ((firstClass.isArray()) && (secondClass.isArray())) {
    return compareArrays((Object[])firstValue, (Object[])secondValue);
  } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
    // BigDecimals equals does not consider the precision correctly
    return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  }
  return false;
}

相关文章

Helper类方法