Example usage for org.jfree.chart.util ObjectUtils hashCode

List of usage examples for org.jfree.chart.util ObjectUtils hashCode

Introduction

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

Prototype

public static int hashCode(final Object object) 

Source Link

Document

Returns a hash code for an object, or zero if the object is null.

Usage

From source file:org.jfree.data.xyz.XYZSeriesCollection.java

@Override
public int hashCode() {
    int hash = 5;
    hash = 59 * hash + ObjectUtils.hashCode(this.series);
    return hash;
}