本文整理了Java中azkaban.utils.Utils.equals()
方法的一些代码示例,展示了Utils.equals()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utils.equals()
方法的具体详情如下:
包路径:azkaban.utils.Utils
类名称:Utils
方法名:equals
[英]Equivalent to Object.equals except that it handles nulls. If a and b are both null, true is returned.
[中]相当于对象。等于,但它处理空值。如果a和b都为null,则返回true。
代码示例来源:origin: azkaban/azkaban
/**
*/
@Override
public boolean equals(final Object o) {
if (o == this) {
return true;
} else if (o == null) {
return false;
} else if (o.getClass() != Props.class) {
return false;
}
final Props p = (Props) o;
return this._current.equals(p._current) && Utils.equals(this._parent, p._parent);
}
代码示例来源:origin: com.linkedin.azkaban/az-core
/**
*/
@Override
public boolean equals(final Object o) {
if (o == this) {
return true;
} else if (o == null) {
return false;
} else if (o.getClass() != Props.class) {
return false;
}
final Props p = (Props) o;
return this._current.equals(p._current) && Utils.equals(this._parent, p._parent);
}
代码示例来源:origin: com.linkedin.azkaban/azkaban
/**
*/
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
} else if (o == null) {
return false;
} else if (o.getClass() != Props.class) {
return false;
}
Props p = (Props) o;
return _current.equals(p._current)
&& Utils.equals(this._parent, p._parent);
}
内容来源于网络,如有侵权,请联系作者删除!