congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ObjectUtilities.hashCode
Code IndexAdd Tabnine to your IDE (free)

How to use
hashCode
method
in
org.jfree.util.ObjectUtilities

Best Java code snippets using org.jfree.util.ObjectUtilities.hashCode (Showing top 3 results out of 315)

origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns a hash code for this instance.
 *
 * @return A hash code.
 */
public int hashCode() {
  int result = 193;
  result = 37 * result + ObjectUtilities.hashCode(this.fillPaint);
  // FIXME: use other fields too
  return result;
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns a hashcode for the title.
 *
 * @return The hashcode.
 */
public int hashCode() {
  int result = 193;
  result = 37 * result + ObjectUtilities.hashCode(this.position);
  result = 37 * result
      + ObjectUtilities.hashCode(this.horizontalAlignment);
  result = 37 * result + ObjectUtilities.hashCode(this.verticalAlignment);
  return result;
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns a hash code for this instance.
 *
 * @return The hash code.
 */
public int hashCode() {
  int result = 193;
  result = 37 * result + ObjectUtilities.hashCode(this.background);
  result = 37 * result + ObjectUtilities.hashCode(this.cap);
  result = 37 * result + this.dialFrame.hashCode();
  long temp = Double.doubleToLongBits(this.viewX);
  result = 37 * result + (int) (temp ^ (temp >>> 32));
  temp = Double.doubleToLongBits(this.viewY);
  result = 37 * result + (int) (temp ^ (temp >>> 32));
  temp = Double.doubleToLongBits(this.viewW);
  result = 37 * result + (int) (temp ^ (temp >>> 32));
  temp = Double.doubleToLongBits(this.viewH);
  result = 37 * result + (int) (temp ^ (temp >>> 32));
  return result;
}
org.jfree.utilObjectUtilitieshashCode

Javadoc

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

Popular methods of ObjectUtilities

  • equal
    Returns true if the two objects are equal OR bothnull.
  • clone
    Returns a clone of the specified object, if it can be cloned, otherwise throws a CloneNotSupportedEx
  • convertName
    Transform the class-relative resource name into a global name by appending it to the classes package
  • getClassLoader
    Returns the classloader, which was responsible for loading the given class.
  • getClassLoaderSource
    Returns the internal configuration entry, whether the classloader of the thread context or the conte
  • getResource
    Returns the resource specified by the absolute name.
  • getResourceRelative
    Returns the resource specified by the relative name.
  • getResourceRelativeAsStream
    Returns the inputstream for the resource specified by therelative name.
  • loadAndInstantiate
    Tries to create a new instance of the given class. This is a short cut for the common bean instantia
  • parseVersions
  • setClassLoaderSource
    Defines the internal configuration entry, whether the classloader of the thread context or the conte
  • deepClone
    Returns a new collection containing clones of all the items in the specified collection.
  • setClassLoaderSource,
  • deepClone

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • setContentView (Activity)
  • putExtra (Intent)
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now