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

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

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

Util.bothNullOrEqual介绍

[英]Null-safe equivalent of a.equals(b).
[中]a.equals(b)的空安全等价物。

代码示例

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

  1. @Override
  2. public boolean equals(Object obj) {
  3. if (obj instanceof GifUrlSet) {
  4. GifUrlSet other = (GifUrlSet) obj;
  5. return Util.bothNullOrEqual(original, other.original)
  6. && Util.bothNullOrEqual(fixed_width, other.fixed_width)
  7. && Util.bothNullOrEqual(fixed_height, other.fixed_height);
  8. }
  9. return false;
  10. }

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

  1. @Override
  2. public boolean equals(Object obj) {
  3. if (obj instanceof GifResult) {
  4. GifResult other = (GifResult) obj;
  5. return Util.bothNullOrEqual(id, other.id)
  6. && Util.bothNullOrEqual(images, other.images);
  7. }
  8. return false;
  9. }

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

  1. @Override
  2. public boolean equals(Object obj) {
  3. if (obj instanceof GifImage) {
  4. GifImage other = (GifImage) obj;
  5. return other.width == width
  6. && other.height == height
  7. && Util.bothNullOrEqual(url, other.url);
  8. }
  9. return false;
  10. }

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof Key) {
  4. Key other = (Key) o;
  5. return size == other.size
  6. && Util.bothNullOrEqual(config, other.config);
  7. }
  8. return false;
  9. }

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof BaseRequestOptions<?>) {
  4. BaseRequestOptions<?> other = (BaseRequestOptions<?>) o;
  5. return Float.compare(other.sizeMultiplier, sizeMultiplier) == 0
  6. && errorId == other.errorId
  7. && Util.bothNullOrEqual(errorPlaceholder, other.errorPlaceholder)
  8. && placeholderId == other.placeholderId
  9. && Util.bothNullOrEqual(placeholderDrawable, other.placeholderDrawable)
  10. && fallbackId == other.fallbackId
  11. && Util.bothNullOrEqual(fallbackDrawable, other.fallbackDrawable)
  12. && isCacheable == other.isCacheable
  13. && overrideHeight == other.overrideHeight
  14. && overrideWidth == other.overrideWidth
  15. && isTransformationRequired == other.isTransformationRequired
  16. && isTransformationAllowed == other.isTransformationAllowed
  17. && useUnlimitedSourceGeneratorsPool == other.useUnlimitedSourceGeneratorsPool
  18. && onlyRetrieveFromCache == other.onlyRetrieveFromCache
  19. && diskCacheStrategy.equals(other.diskCacheStrategy)
  20. && priority == other.priority
  21. && options.equals(other.options)
  22. && transformations.equals(other.transformations)
  23. && resourceClass.equals(other.resourceClass)
  24. && Util.bothNullOrEqual(signature, other.signature)
  25. && Util.bothNullOrEqual(theme, other.theme);
  26. }
  27. return false;
  28. }

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

  1. @SuppressWarnings({"PMD.SimplifyBooleanReturns", "RedundantIfStatement"})
  2. @Override
  3. public boolean equals(Object o) {
  4. if (this == o) {
  5. return true;
  6. }
  7. if (o == null || getClass() != o.getClass()) {
  8. return false;
  9. }
  10. MultiClassKey that = (MultiClassKey) o;
  11. if (!first.equals(that.first)) {
  12. return false;
  13. }
  14. if (!second.equals(that.second)) {
  15. return false;
  16. }
  17. if (!Util.bothNullOrEqual(third, that.third)) {
  18. return false;
  19. }
  20. return true;
  21. }

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof ResourceCacheKey) {
  4. ResourceCacheKey other = (ResourceCacheKey) o;
  5. return height == other.height && width == other.width
  6. && Util.bothNullOrEqual(transformation, other.transformation)
  7. && decodedResourceClass.equals(other.decodedResourceClass)
  8. && sourceKey.equals(other.sourceKey)
  9. && signature.equals(other.signature)
  10. && options.equals(other.options);
  11. }
  12. return false;
  13. }

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof Key) {
  4. Key other = (Key) o;
  5. return size == other.size
  6. && Util.bothNullOrEqual(config, other.config);
  7. }
  8. return false;
  9. }

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

  1. Drawable second = new GradientDrawable();
  2. assertThat(first).isNotEqualTo(second);
  3. assertThat(Util.bothNullOrEqual(first, second)).isFalse();
  4. new EqualsTester()
  5. .addEqualityGroup(

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof RequestOptions) {
  4. RequestOptions other = (RequestOptions) o;
  5. return Float.compare(other.sizeMultiplier, sizeMultiplier) == 0
  6. && errorId == other.errorId
  7. && Util.bothNullOrEqual(errorPlaceholder, other.errorPlaceholder)
  8. && placeholderId == other.placeholderId
  9. && Util.bothNullOrEqual(placeholderDrawable, other.placeholderDrawable)
  10. && fallbackId == other.fallbackId
  11. && Util.bothNullOrEqual(fallbackDrawable, other.fallbackDrawable)
  12. && isCacheable == other.isCacheable
  13. && overrideHeight == other.overrideHeight
  14. && overrideWidth == other.overrideWidth
  15. && isTransformationRequired == other.isTransformationRequired
  16. && isTransformationAllowed == other.isTransformationAllowed
  17. && useUnlimitedSourceGeneratorsPool == other.useUnlimitedSourceGeneratorsPool
  18. && onlyRetrieveFromCache == other.onlyRetrieveFromCache
  19. && diskCacheStrategy.equals(other.diskCacheStrategy)
  20. && priority == other.priority
  21. && options.equals(other.options)
  22. && transformations.equals(other.transformations)
  23. && resourceClass.equals(other.resourceClass)
  24. && Util.bothNullOrEqual(signature, other.signature)
  25. && Util.bothNullOrEqual(theme, other.theme);
  26. }
  27. return false;
  28. }

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

  1. @SuppressWarnings({"PMD.SimplifyBooleanReturns", "RedundantIfStatement"})
  2. @Override
  3. public boolean equals(Object o) {
  4. if (this == o) {
  5. return true;
  6. }
  7. if (o == null || getClass() != o.getClass()) {
  8. return false;
  9. }
  10. MediaStoreSignature that = (MediaStoreSignature) o;
  11. if (dateModified != that.dateModified) {
  12. return false;
  13. }
  14. if (orientation != that.orientation) {
  15. return false;
  16. }
  17. if (!Util.bothNullOrEqual(mimeType, that.mimeType)) {
  18. return false;
  19. }
  20. return true;
  21. }

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

  1. @SuppressWarnings({"PMD.SimplifyBooleanReturns", "RedundantIfStatement"})
  2. @Override
  3. public boolean equals(Object o) {
  4. if (this == o) {
  5. return true;
  6. }
  7. if (o == null || getClass() != o.getClass()) {
  8. return false;
  9. }
  10. MultiClassKey that = (MultiClassKey) o;
  11. if (!first.equals(that.first)) {
  12. return false;
  13. }
  14. if (!second.equals(that.second)) {
  15. return false;
  16. }
  17. if (!Util.bothNullOrEqual(third, that.third)) {
  18. return false;
  19. }
  20. return true;
  21. }

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

  1. @Override
  2. public boolean equals(Object o) {
  3. if (o instanceof ResourceCacheKey) {
  4. ResourceCacheKey other = (ResourceCacheKey) o;
  5. return height == other.height && width == other.width
  6. && Util.bothNullOrEqual(transformation, other.transformation)
  7. && decodedResourceClass.equals(other.decodedResourceClass)
  8. && sourceKey.equals(other.sourceKey)
  9. && signature.equals(other.signature)
  10. && options.equals(other.options);
  11. }
  12. return false;
  13. }

相关文章