A hash-code generator and a collection of static hash-code generation methods. : Hash Code « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » Hash CodeScreenshots 
A hash-code generator and a collection of static hash-code generation methods.
      
 
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2005, JBoss Inc., and individual contributors as indicated
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.io.Serializable;

/**
 * A hash-code generator and a collection of static hash-code generation
 * methods.
 
 @version <tt>$Revision: 2800 $</tt>
 @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
 */
@SuppressWarnings("unchecked")
public final class HashCode implements Serializable, Cloneable, Comparable {
  /** The serialVersionUID */
  private static final long serialVersionUID = 2391396931740264021L;

  /** Hashcode for a 'null' value. */
  private static final int NULL_HASHCODE = 0;

  /** Hashcode for a 'true' boolean */
  private static final int TRUE_HASHCODE = 1231// completely arbitrary

  /** Hashcode for a 'false' boolean */
  private static final int FALSE_HASHCODE = 1237// completely arbitrary

  /** The hash-code value. */
  private int value;

  /**
   * Construct a new <tt>HashCode</tt> using the given <tt>int</tt> as the
   * base value.
   
   @param value
   *          <tt>int</tt> to use as the base value.
   */
  public HashCode(final int value) {
    this.value = value;
  }

  /**
   * Construct a new <tt>HashCode</tt>.
   */
  public HashCode() {
    this(0);
  }

  /**
   * Add the hash-code of the given value.
   
   @param b
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final boolean b) {
    value ^= generate(b);
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param n
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final byte n) {
    value ^= n;
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param n
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final char n) {
    value ^= n;
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param n
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final short n) {
    value ^= n;
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param n
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final int n) {
    value ^= n;
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param n
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final long n) {
    value ^= generate(n);
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param f
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final float f) {
    value ^= generate(f);
    return this;
  }

  /**
   * Add the hash-code of the given value.
   
   @param f
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final double f) {
    value ^= generate(f);
    return this;
  }

  /**
   * Add the hash-code of the given object.
   
   @param obj
   *          Value to get hash-code from.
   @return <i>This</i> <tt>HashCode</tt>.
   */
  public HashCode add(final Object obj) {
    value ^= generate(obj);
    return this;
  }

  /**
   * Get the hash-code.
   
   @return Hash-code.
   */
  public int hashCode() {
    return value;
  }

  /**
   * Compares this object with the specified <tt>int</tt> for order.
   
   @param other
   *          Value to compare with.
   @return A negative integer, zero, or a positive integer as this object is
   *         less than, equal to, or greater than the specified object.
   */
  public int compareTo(final int other) {
    return (value < other? -(value == other1;
  }

  /**
   * Compares this object with the specified object for order.
   
   @param obj
   *          Value to compare with.
   @return A negative integer, zero, or a positive integer as this object is
   *         less than, equal to, or greater than the specified object.
   
   @throws ClassCastException
   *           Object is not a <tt>HashCode</tt>.
   */
  public int compareTo(final Object objthrows ClassCastException {
    HashCode hashCode = (HashCodeobj;
    return compareTo(hashCode.value);
  }

  /**
   * Test the equality of this <tt>HashCode</tt> and another object.
   
   @param obj
   *          Object to test equality with.
   @return True if object is equal.
   */
  public boolean equals(final Object obj) {
    if (obj == this)
      return true;

    if (obj != null && obj.getClass() == getClass()) {
      return value == ((HashCodeobj).value;
    }

    return false;
  }

  /**
   * Return a string representation of this <tt>HashCode</tt>.
   
   @return A string representation of this <tt>HashCode</tt>.
   */
  public String toString() {
    return String.valueOf(value);
  }

  /**
   * Return a cloned copy of this <tt>HashCode</tt>.
   
   @return Cloned <tt>HashCode</tt>.
   */
  public Object clone() {
    try {
      return super.clone();
    catch (CloneNotSupportedException e) {
      throw new InternalError();
    }
  }

  // ///////////////////////////////////////////////////////////////////////
  // Generation Methods //
  // ///////////////////////////////////////////////////////////////////////

  /**
   * Generate a hash code for a boolean value.
   
   @param value
   *          Boolean value to generate hash code from.
   @return Hash code.
   */
  public static int generate(final boolean value) {
    return value ? TRUE_HASHCODE : FALSE_HASHCODE;
  }

  /**
   * Generate a hash code for a long value.
   
   @param value
   *          Long value to generate hash code from.
   @return Hash code.
   */
  public static int generate(final long value) {
    return (int) (value ^ (value >> 32));
  }

  /**
   * Generate a hash code for a double value.
   
   @param value
   *          Double value to generate hash code from.
   @return Hash code.
   */
  public static int generate(final double value) {
    return generate(Double.doubleToLongBits(value));
  }

  /**
   * Generate a hash code for a float value.
   
   @param value
   *          Float value to generate hash code from.
   @return Hash code.
   */
  public static int generate(final float value) {
    return Float.floatToIntBits(value);
  }

  /**
   * Generate a hash code for a byte array.
   
   @param bytes
   *          An array of bytes to generate a hash code from.
   @return Hash code.
   */
  public static int generate(final byte[] bytes) {
    int hashcode = 0;

    for (int i = 0; i < bytes.length; i++) {
      hashcode <<= 1;
      hashcode ^= bytes[i];
    }

    return hashcode;
  }

  /**
   * Generate a hash code for an object array.
   
   * <p>
   * Does not handle nested primitive array elements.
   
   @param array
   *          Array to generate hashcode for.
   @param deep
   *          True to traverse elements which are arrays to determine the
   *          elements hash code.
   @return Hash code.
   */
  public static int generate(final Object array[]final boolean deep) {
    int hashcode = 0;

    for (int i = 0; i < array.length; i++) {
      if (deep && (array[iinstanceof Object[])) {
        hashcode ^= generate((Object[]) array[i]true);
      else {
        hashcode ^= array[i].hashCode();
      }
    }

    return hashcode;
  }

  /**
   * Generate a shallow hash code for an object array.
   
   @param array
   *          Array to generate hashcode for.
   @return Hash code.
   */
  public static int generate(final Object array[]) {
    return generate(array, false);
  }

  /**
   * Generate a hash code for an object.
   
   @param obj
   *          Object to generate hashcode for.
   @return Hash code.
   */
  public static int generate(final Object obj) {
    if (obj != null) {
      return obj.hashCode();
    }

    return NULL_HASHCODE;
  }
}

   
    
    
    
    
    
  
Related examples in the same category
1. Computing hash codes
2. MD5 hash generator
3. Hash 32 String
4. Hash 64 String
5. MD5 hashing: Encodes a string
6. MD5 String
7. Hash Code BuilderHash Code Builder
8. HashCode generationHashCode generation
9. Get hash code for primitive data types
10. Return as hash code for the given object
11. Null Safe Hash Code
12. A very efficient java hash algorithm, based on the BuzHash algoritm
13. Easy implementation of hashCode
14. An implementation of the HMACT64 keyed hashing algorithm
15. Gets the hash code of an object returning zero when the object is null
16. Unify Hash
17. Secure Hash
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.