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

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

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

Helper.compareArrays介绍

暂无

代码示例

代码示例来源: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: 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

if (!Helper.compareArrays((Object[])myValue, (Object[])comparisionValue)) {
  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;
}

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

if (!Helper.compareArrays((Object[])value, (Object[])otherValue)) {
  return false;

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

if (!Helper.compareArrays((Object[])value, (Object[])otherValue)) {
  return false;

相关文章

Helper类方法