Simple Long Id Generator : UUID GUID « 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 » UUID GUIDScreenshots 
Simple Long Id Generator
  
// Copyright (c) 2003-2009, Jodd Team (jodd.org). All Rights Reserved.


/**
 * Simple synchronized sequence id generator. It generates long numbers in a
 * sequence. When counter reaches max long, it will be set back to zero.
 */
public class SimpleLongIdGenerator {

  protected volatile long value;

  protected long initialValue;
  protected long maxValue;
  protected boolean cycle;

  /**
   * Creates a new default cycled id generator. Starts from 1 and counts up to max long value.
   */
  public SimpleLongIdGenerator() {
    this(1, Long.MAX_VALUE, true);
  }

  /**
   * Creates a new cycled id generator with specified initial value.
   */
  public SimpleLongIdGenerator(long initialValue) {
    this(initialValue, Long.MAX_VALUE, true);
  }

  /**
   * Creates a new cycled id generator with specified range.
   */
  public SimpleLongIdGenerator(long initialValue, long maxValue) {
    this(initialValue, maxValue, true);
  }

  /**
   * Creates a new id generator with specified range and cycling flag.
   */
  public SimpleLongIdGenerator(long initialValue, long maxValue, boolean cycle) {
    if (initialValue < 0) {
      throw new IllegalArgumentException("Initial value '" + initialValue + "' must be a positive number.");
    }
    if (maxValue <= initialValue) {
      throw new IllegalArgumentException("Max value '" + maxValue + "' is less or equals to initial value '" + initialValue + "'.");
    }
    this.initialValue = this.value = initialValue;
    this.maxValue = maxValue;
    this.cycle = cycle;
  }

  /**
   * Returns the next value from the sequence. Thread-safe.
   */
  public synchronized long next() {
    long id = value;

    value++;
    if ((value > maxValue|| (value < 0)) {
      if (cycle == false) {
        throw new IllegalStateException("Max value already reached.");
      }
      value = initialValue;
    }
    return id;
  }
}

   
    
  
Related examples in the same category
1. Random GUID
2. Algorithm for generating Random GUID
3. Get a unique identifier Using java.rmi.dgc.VMID
4. Using java.util.UUID
5. Create your own basic UUID
6. Session ID generator
7. UUID generator from Sun Microsystems
8. UUID generator from http://www1.ics.uci.edu
9. Using java.util.concurrent.AtomicLong: A numerical id, start at zero and increment by one.
10. A 32 byte GUID generator
11. A unique identifier
12. Generate pseudo-GUID sequences
13. Generates a UUID
14. Generates random UUIDs
15. Generator for Globally unique Strings
16. ID generator
17. Simple Id Generator
18. UUID generation
19. UUID generator of 32 bytes long values
20. Long Sequence Generator
21. UUID generator
22. Thread-safe version of the Axiom UUIDGenerator
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.