本文整理了Java中com.bumptech.glide.util.Util.hashCode()
方法的一些代码示例,展示了Util.hashCode()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.hashCode()
方法的具体详情如下:
包路径:com.bumptech.glide.util.Util
类名称:Util
方法名:hashCode
暂无
代码示例来源:origin: bumptech/glide
public static int hashCode(boolean value) {
return hashCode(value, HASH_ACCUMULATOR);
}
}
代码示例来源:origin: bumptech/glide
public static int hashCode(int value) {
return hashCode(value, HASH_ACCUMULATOR);
}
代码示例来源:origin: bumptech/glide
public static int hashCode(boolean value, int accumulator) {
return hashCode(value ? 1 : 0, accumulator);
}
代码示例来源:origin: bumptech/glide
public static int hashCode(float value) {
return hashCode(value, HASH_ACCUMULATOR);
}
代码示例来源:origin: bumptech/glide
@Override
public int hashCode() {
return Util.hashCode(ID.hashCode(),
Util.hashCode(roundingRadius));
}
代码示例来源:origin: bumptech/glide
@Override
public int hashCode() {
return Util.hashCode(ID.hashCode(),
Util.hashCode(degreesToRotate));
}
代码示例来源:origin: bumptech/glide
@Override
public int hashCode() {
int hashCode = Util.hashCode(sizeMultiplier);
hashCode = Util.hashCode(errorId, hashCode);
hashCode = Util.hashCode(errorPlaceholder, hashCode);
hashCode = Util.hashCode(placeholderId, hashCode);
hashCode = Util.hashCode(placeholderDrawable, hashCode);
hashCode = Util.hashCode(fallbackId, hashCode);
hashCode = Util.hashCode(fallbackDrawable, hashCode);
hashCode = Util.hashCode(isCacheable, hashCode);
hashCode = Util.hashCode(overrideHeight, hashCode);
hashCode = Util.hashCode(overrideWidth, hashCode);
hashCode = Util.hashCode(isTransformationRequired, hashCode);
hashCode = Util.hashCode(isTransformationAllowed, hashCode);
hashCode = Util.hashCode(useUnlimitedSourceGeneratorsPool, hashCode);
hashCode = Util.hashCode(onlyRetrieveFromCache, hashCode);
hashCode = Util.hashCode(diskCacheStrategy, hashCode);
hashCode = Util.hashCode(priority, hashCode);
hashCode = Util.hashCode(options, hashCode);
hashCode = Util.hashCode(transformations, hashCode);
hashCode = Util.hashCode(resourceClass, hashCode);
hashCode = Util.hashCode(signature, hashCode);
hashCode = Util.hashCode(theme, hashCode);
return hashCode;
}
代码示例来源:origin: bumptech/glide
public static int hashCode(float value, int accumulator) {
return hashCode(Float.floatToIntBits(value), accumulator);
}
代码示例来源:origin: bumptech/glide
public static int hashCode(@Nullable Object object, int accumulator) {
return hashCode(object == null ? 0 : object.hashCode(), accumulator);
}
代码示例来源:origin: sunfusheng/GlideImageView
@Override
public int hashCode() {
return Util.hashCode(ID.hashCode(), Util.hashCode(radius, Util.hashCode(sampling)));
}
代码示例来源:origin: sunfusheng/GlideImageView
@Override
public int hashCode() {
return Util.hashCode(ID.hashCode(), Util.hashCode(radius));
}
代码示例来源:origin: sunfusheng/GlideImageView
@Override
public int hashCode() {
return Util.hashCode(ID.hashCode());
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(boolean value, int accumulator) {
return hashCode(value ? 1 : 0, accumulator);
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(int value) {
return hashCode(value, HASH_ACCUMULATOR);
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(float value) {
return hashCode(value, HASH_ACCUMULATOR);
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(boolean value) {
return hashCode(value, HASH_ACCUMULATOR);
}
代码示例来源:origin: mozilla-tw/Rocket
@Override
public int hashCode() {
int hashCode = Util.hashCode(sizeMultiplier);
hashCode = Util.hashCode(errorId, hashCode);
hashCode = Util.hashCode(errorPlaceholder, hashCode);
hashCode = Util.hashCode(placeholderId, hashCode);
hashCode = Util.hashCode(placeholderDrawable, hashCode);
hashCode = Util.hashCode(fallbackId, hashCode);
hashCode = Util.hashCode(fallbackDrawable, hashCode);
hashCode = Util.hashCode(isCacheable, hashCode);
hashCode = Util.hashCode(overrideHeight, hashCode);
hashCode = Util.hashCode(overrideWidth, hashCode);
hashCode = Util.hashCode(isTransformationRequired, hashCode);
hashCode = Util.hashCode(isTransformationAllowed, hashCode);
hashCode = Util.hashCode(useUnlimitedSourceGeneratorsPool, hashCode);
hashCode = Util.hashCode(onlyRetrieveFromCache, hashCode);
hashCode = Util.hashCode(diskCacheStrategy, hashCode);
hashCode = Util.hashCode(priority, hashCode);
hashCode = Util.hashCode(options, hashCode);
hashCode = Util.hashCode(transformations, hashCode);
hashCode = Util.hashCode(resourceClass, hashCode);
hashCode = Util.hashCode(signature, hashCode);
hashCode = Util.hashCode(theme, hashCode);
return hashCode;
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(float value, int accumulator) {
return hashCode(Float.floatToIntBits(value), accumulator);
}
代码示例来源:origin: mozilla-tw/Rocket
public static int hashCode(Object object, int accumulator) {
return hashCode(object == null ? 0 : object.hashCode(), accumulator);
}
内容来源于网络,如有侵权,请联系作者删除!