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

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

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

Helper.compareCharArrays介绍

暂无

代码示例

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

  1. /**
  2. * Compare two potential arrays and return true if they are the same. Will
  3. * check for BigDecimals as well.
  4. */
  5. public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  6. Class firstClass = firstValue.getClass();
  7. Class secondClass = secondValue.getClass();
  8. // Arrays must be checked for equality because default does identity
  9. if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
  10. return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  11. } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
  12. return compareCharArrays((char[])firstValue, (char[])secondValue);
  13. } else if ((firstClass.isArray()) && (secondClass.isArray())) {
  14. return compareArrays((Object[])firstValue, (Object[])secondValue);
  15. } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
  16. // BigDecimals equals does not consider the precision correctly
  17. return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  18. }
  19. return false;
  20. }

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

  1. /**
  2. * Compare two potential arrays and return true if they are the same. Will
  3. * check for BigDecimals as well.
  4. */
  5. public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  6. Class firstClass = firstValue.getClass();
  7. Class secondClass = secondValue.getClass();
  8. // Arrays must be checked for equality because default does identity
  9. if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
  10. return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  11. } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
  12. return compareCharArrays((char[])firstValue, (char[])secondValue);
  13. } else if ((firstClass.isArray()) && (secondClass.isArray())) {
  14. return compareArrays((Object[])firstValue, (Object[])secondValue);
  15. } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
  16. // BigDecimals equals does not consider the precision correctly
  17. return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  18. }
  19. return false;
  20. }

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

  1. if (!Helper.compareCharArrays((char[])myValue, (char[])comparisionValue)){
  2. return false;

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

  1. /**
  2. * Compare two potential arrays and return true if they are the same. Will
  3. * check for BigDecimals as well.
  4. */
  5. public static boolean comparePotentialArrays(Object firstValue, Object secondValue) {
  6. Class firstClass = firstValue.getClass();
  7. Class secondClass = secondValue.getClass();
  8. // Arrays must be checked for equality because default does identity
  9. if ((firstClass == ClassConstants.APBYTE) && (secondClass == ClassConstants.APBYTE)) {
  10. return compareByteArrays((byte[])firstValue, (byte[])secondValue);
  11. } else if ((firstClass == ClassConstants.APCHAR) && (secondClass == ClassConstants.APCHAR)) {
  12. return compareCharArrays((char[])firstValue, (char[])secondValue);
  13. } else if ((firstClass.isArray()) && (secondClass.isArray())) {
  14. return compareArrays((Object[])firstValue, (Object[])secondValue);
  15. } else if (firstValue instanceof java.math.BigDecimal && secondValue instanceof java.math.BigDecimal) {
  16. // BigDecimals equals does not consider the precision correctly
  17. return compareBigDecimals((java.math.BigDecimal)firstValue, (java.math.BigDecimal)secondValue);
  18. }
  19. return false;
  20. }

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

  1. if (!Helper.compareCharArrays((char[])value, (char[])otherValue)){
  2. return false;

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

  1. if (!Helper.compareCharArrays((char[])value, (char[])otherValue)){
  2. return false;

相关文章

Helper类方法