Primitive utilities : Primitive Data Type « Data Type « 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 » Data Type » Primitive Data TypeScreenshots 
Primitive utilities
   

/*
 * 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.
 */

/**
 * Primitive utilities.
 
 @version <tt>$Revision: 1958 $</tt>
 @author <a href="mailto:jason@planet57.com">Jason Dillon</a>
 */
public final class Primitives {
  /**
   * Get a Boolean from a boolean, equivalent to the java 1.4 method
   * Boolean.valueOf(boolean)
   
   @param value
   *          the boolean
   @return the Boolean equivalent
   */
  public static Boolean valueOf(boolean value) {
    if (value)
      return Boolean.TRUE;
    else
      return Boolean.FALSE;
  }

  /**
   * Test the equality of two doubles by converting their values into IEEE 754
   * floating-point "double format" long values.
   
   @param a
   *          Double to check equality with.
   @param b
   *          Double to check equality with.
   @return True if a equals b.
   */
  public static boolean equals(final double a, final double b) {
    return Double.doubleToLongBits(a== Double.doubleToLongBits(b);
  }

  /**
   * Test the equality of two doubles by converting their values into IEEE 754
   * floating-point "single precision" bit layouts.
   
   @param a
   *          Float to check equality with.
   @param b
   *          Float to check equality with.
   @return True if a equals b.
   */
  public static boolean equals(final float a, final float b) {
    return Float.floatToIntBits(a== Float.floatToIntBits(b);
  }

  /**
   * Test the equality of a given sub-section of two byte arrays.
   
   @param a
   *          The first byte array.
   @param abegin
   *          The begining index of the first byte array.
   @param b
   *          The second byte array.
   @param bbegin
   *          The begining index of the second byte array.
   @param length
   *          The length of the sub-section.
   @return True if sub-sections are equal.
   */
  public static boolean equals(final byte a[]final int abegin, final byte b[]final int bbegin,
      final int length) {
    try {
      int i = length;
      while (--i >= 0) {
        if (a[abegin + i!= b[bbegin + i]) {
          return false;
        }
      }
    catch (ArrayIndexOutOfBoundsException e) {
      return false;
    }

    return true;
  }

  /**
   * Test the equality of two byte arrays.
   
   @param a
   *          The first byte array.
   @param b
   *          The second byte array.
   @return True if the byte arrays are equal.
   */
  public static boolean equals(final byte a[]final byte b[]) {
    if (a == b)
      return true;
    if (a == null || b == null)
      return false;
    if (a.length != b.length)
      return false;

    try {
      for (int i = 0; i < a.length; i++) {
        if (a[i!= b[i]) {
          return false;
        }
      }
    catch (ArrayIndexOutOfBoundsException e) {
      return false;
    }

    return true;
  }

}

   
    
    
  
Related examples in the same category
1. Use Integer constructor to convert int primitive type to Integer object.
2. Convert Java Integer object to Numeric primitive types
3. Convert Java String to Integer object
4. Create an Integer object
5. Arithmetic DemoArithmetic Demo
6. Max Variable Length DemoMax Variable Length Demo
7. Data Type Print TestData Type Print Test
8. Tests all the operators on all the primitive data types
9. Demonstrates the ++ and -- operatorsDemonstrates the ++ and -- operators
10. Literals
11. Demonstrates the mathematical operators.Demonstrates the mathematical operators.
12. Java lets you overflowJava lets you overflow
13. Built in typesBuilt in types
14. Shows default initial valuesShows default initial values
15. Relational DemoRelational Demo
16. Parse Number
17. Java Type Helper
18. Convert the given array (which may be a primitive array) to an object array
19. Convert primitive back and forth
20. Returns a default value if the object passed is null
21. A mutable boolean wrapper.
22. A mutable byte wrapper.
23. A mutable double wrapper.
24. A mutable float wrapper.
25. A mutable int wrapper.
26. A mutable long wrapper.
27. A mutable short wrapper.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.