Example usage for org.springframework.util ObjectUtils hashCode

List of usage examples for org.springframework.util ObjectUtils hashCode

Introduction

In this page you can find the example usage for org.springframework.util ObjectUtils hashCode.

Prototype

@Deprecated
public static int hashCode(long lng) 

Source Link

Document

Return the same value as Long#hashCode(long) }.

Usage

From source file:lodsve.core.condition.ConditionOutcome.java

@Override
public int hashCode() {
    return ObjectUtils.hashCode(this.match) * 31 + ObjectUtils.nullSafeHashCode(this.message);
}