com.bumptech.glide.util.Util.bothModelsNullEquivalentOrEquals()方法的使用及代码示例

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

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

Util.bothModelsNullEquivalentOrEquals介绍

暂无

代码示例

代码示例来源:origin: bumptech/glide

  1. @SuppressWarnings("SynchronizationOnLocalVariableOrMethodParameter")
  2. @Override
  3. public synchronized boolean isEquivalentTo(Request o) {
  4. if (o instanceof SingleRequest) {
  5. SingleRequest<?> that = (SingleRequest<?>) o;
  6. synchronized (that) {
  7. return overrideWidth == that.overrideWidth
  8. && overrideHeight == that.overrideHeight
  9. && Util.bothModelsNullEquivalentOrEquals(model, that.model)
  10. && transcodeClass.equals(that.transcodeClass)
  11. && requestOptions.equals(that.requestOptions)
  12. && priority == that.priority
  13. // We do not want to require that RequestListeners implement equals/hashcode, so we
  14. // don't compare them using equals(). We can however, at least assert that the same
  15. // amount of request listeners are present in both requests.
  16. && listenerCountEquals(that);
  17. }
  18. }
  19. return false;
  20. }

代码示例来源:origin: mozilla-tw/Rocket

  1. @Override
  2. public boolean isEquivalentTo(Request o) {
  3. if (o instanceof SingleRequest) {
  4. SingleRequest that = (SingleRequest) o;
  5. return overrideWidth == that.overrideWidth
  6. && overrideHeight == that.overrideHeight
  7. && Util.bothModelsNullEquivalentOrEquals(model, that.model)
  8. && transcodeClass.equals(that.transcodeClass)
  9. && requestOptions.equals(that.requestOptions)
  10. && priority == that.priority;
  11. }
  12. return false;
  13. }

相关文章