jodd.util.Util.equals()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(235)

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

Util.equals介绍

[英]Safely compares two objects just like equals() would, except it allows any of the 2 objects to be null.
[中]安全地比较两个对象,就像equals()一样,只不过它允许两个对象中的任何一个为null

代码示例

代码示例来源:origin: redisson/redisson

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(String s1, String s2) {
  11. return Util.equals(s1, s2);
  12. }

代码示例来源:origin: oblac/jodd

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(final String s1, final String s2) {
  11. return Util.equals(s1, s2);
  12. }

代码示例来源:origin: redisson/redisson

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源:origin: oblac/jodd

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源:origin: oblac/jodd

  1. @Test
  2. void testEquals() {
  3. Object a = new Integer(173);
  4. Object b = new Integer(1);
  5. Object c = new Integer(173);
  6. assertTrue(Util.equals(a, a));
  7. assertTrue(Util.equals(a, c));
  8. assertTrue(Util.equals(c, a));
  9. assertFalse(Util.equals(a, b));
  10. assertFalse(Util.equals(b, a));
  11. assertFalse(Util.equals(a, null));
  12. assertFalse(Util.equals(null, a));
  13. assertTrue(Util.equals(null, null));
  14. }

代码示例来源:origin: org.jodd/jodd-core

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. *
  8. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  9. */
  10. public static boolean equals(final String s1, final String s2) {
  11. return Util.equals(s1, s2);
  12. }

代码示例来源:origin: fivesmallq/web-data-extractor

  1. /**
  2. * Compares 2 strings. If one of the strings is <code>null</code>, <code>false</code> is returned. if
  3. * both string are <code>null</code>, <code>true</code> is returned.
  4. *
  5. * @param s1 first string to compare
  6. * @param s2 second string
  7. * @return <code>true</code> if strings are equal, otherwise <code>false</code>
  8. */
  9. public static boolean equals(String s1, String s2) {
  10. return Util.equals(s1, s2);
  11. }

代码示例来源:origin: fivesmallq/web-data-extractor

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

代码示例来源:origin: org.jodd/jodd-core

  1. while (iter.hasNext()) {
  2. Object o = iter.next();
  3. if (equals(o, element)) {
  4. return true;
  5. while (enumeration.hasMoreElements()) {
  6. Object o = enumeration.nextElement();
  7. if (equals(o, element)) {
  8. return true;
  9. for (int i = 0; i < len; i++) {
  10. Object o = Array.get(obj, i);
  11. if (equals(o, element)) {
  12. return true;

相关文章