925732fd1c68fe2ee696f5532481fd712d145be5
[utils] / support / general / src / main / java / org / wamblee / general / Id.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.wamblee.general;
17
18 /**
19  * This class provides a generic typesafe id wrapping a long value.
20  * 
21  * @author Erik Brakkee
22  * 
23  * @param <T>
24  *            Type the id refers to.
25  */
26 public class Id<T> implements Comparable<Id<T>> {
27
28     private long id;
29
30     /**
31      * Constructs the id.
32      * 
33      * @param aId
34      *            Integer id.
35      */
36     public Id(long aId) {
37         id = aId;
38     }
39
40     /**
41      * @return The underlying id.
42      */
43     public long getId() {
44         return id;
45     }
46
47     @Override
48     public int hashCode() {
49         return ((Long) id).hashCode();
50     }
51
52     @Override
53     public boolean equals(Object aObj) {
54         if (aObj == null) {
55             return false;
56         }
57         if (!(aObj instanceof Id)) {
58             return false;
59         }
60         return id == ((Id<T>) aObj).id;
61     }
62
63     @Override
64     public String toString() {
65         return id + "";
66     }
67
68     @Override
69     public int compareTo(org.wamblee.general.Id<T> aId) {
70         return ((Long) id).compareTo((Long) aId.getId());
71     }
72 }