MCPcopy Create free account
hub / github.com/adjust/android_sdk / hashString

Method hashString

Adjust/sdk-core/src/main/java/com/adjust/sdk/Util.java:397–402  ·  view source on GitHub ↗
(String value, int hashCode)

Source from the content-addressed store, hash-verified

395 }
396
397 public static int hashString(String value, int hashCode) {
398 if (value == null) {
399 return 37 * hashCode;
400 }
401 return 37 * hashCode + value.hashCode();
402 }
403
404 public static int hashEnum(Enum value, int hashCode) {
405 if (value == null) {

Callers 3

hashCodeMethod · 0.95
hashCodeMethod · 0.95
hashCodeMethod · 0.95

Calls 1

hashCodeMethod · 0.45

Tested by

no test coverage detected