Mutable Integer : Mutable « Data Type « Java

Home
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.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Data Type » Mutable 




Mutable Integer
Mutable Integer
    

/**
 * created Aug 13, 2004
 
 * @by Thorsten Meinl ([email protected])
 *
 * Copyright 2006 Thorsten Meinl
 *
 * This file is part of parsemis.
 *
 * Licence: 
 *  LGPL: http://www.gnu.org/licenses/lgpl.html
 *   EPL: http://www.eclipse.org/org/documents/epl-v10.php
 *   See the LICENSE file in the project's top-level directory for details.
 */
//package de.parsemis.utils;

/**
 * This class is the same as Integer but the stored value can be changed.
 
 @author Thorsten Meinl ([email protected])
 
 */
public class MutableInteger extends Number implements
    Comparable<MutableInteger>, SynchronizedCounter {
  private static final long serialVersionUID = 532556164094282571L;

  private int m_value;

  /**
   * Creates a new MutableInteger with the given initial value.
   
   @param value
   *            the value
   */
  public MutableInteger(final int value) {
    m_value = value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Comparable#compareTo(java.lang.Object)
   */
  public int compareTo(final MutableInteger o) {
    return m_value - o.m_value;
  }

  /**
   * Decrements the value by one.
   
   @return the new value
   */
  public int dec() {
    return --m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Number#doubleValue()
   */
  @Override
  public double doubleValue() {
    return m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Object#equals(java.lang.Object)
   */
  @Override
  public boolean equals(final Object obj) {
    if (obj == null || !(obj instanceof MutableInteger)) {
      return false;
    }
    return m_value == ((MutableIntegerobj).m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Number#floatValue()
   */
  @Override
  public float floatValue() {
    return m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Object#hashCode()
   */
  @Override
  public int hashCode() {
    return m_value;
  }

  /**
   * Increments the value by one.
   
   @return the new value
   */
  public int inc() {
    return ++m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Number#intValue()
   */
  @Override
  public int intValue() {
    return m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see java.lang.Number#longValue()
   */
  @Override
  public long longValue() {
    return m_value;
  }

  /*
   * (non-Javadoc)
   
   * @see de.parsemis.utils.Counter#next()
   */
  public synchronized int next() {
    return m_value++;
  }

  /**
   * Sets the value to a new value
   
   @param value
   *            the new value
   */
  public void setValue(final int value) {
    m_value = value;
  }
}

interface SynchronizedCounter {
  public int next();
}

   
    
    
    
  














Related examples in the same category
1.Mutable double
2.Immutable Bit
3.Immutable representation of a date with an optional time and an optional time zone based on RFC 3339.
4.Mutable Boolean
5.Mutable Int
6.Mutable Long
7.A reassignable integer usable for counting.
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.