cc022476c90e9864aa94074a8daeac3b082ba97f
[jalview.git] / forester / java / src / org / forester / go / GoId.java
1 // $Id:
2 // FORESTER -- software libraries and applications
3 // for evolutionary biology research and applications.
4 //
5 // Copyright (C) 2008-2009 Christian M. Zmasek
6 // Copyright (C) 2008-2009 Burnham Institute for Medical Research
7 // All rights reserved
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU Lesser General Public
11 // License as published by the Free Software Foundation; either
12 // version 2.1 of the License, or (at your option) any later version.
13 //
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 // Lesser General Public License for more details.
18 //
19 // You should have received a copy of the GNU Lesser General Public
20 // License along with this library; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 //
23 // Contact: phylosoft @ gmail . com
24 // WWW: www.phylosoft.org/forester
25
26 package org.forester.go;
27
28 import java.util.regex.Matcher;
29 import java.util.regex.Pattern;
30
31 public class GoId implements Comparable<GoId> {
32
33     private static final int     SIZE       = 10;
34     private static final String  GO_PREFIX  = "GO:";
35     private static final String  GO_FORMAT  = GO_PREFIX + "\\d{7}";
36     private static final Pattern GO_PATTERN = Pattern.compile( GO_FORMAT );
37     private final String         _id;
38
39     public GoId( final String id ) {
40         if ( id.length() != SIZE ) {
41             throw new IllegalArgumentException( "unexpected format for GO id: " + id );
42         }
43         final Matcher m = GO_PATTERN.matcher( id );
44         if ( !m.matches() ) {
45             throw new IllegalArgumentException( "unexpected format for GO id: " + id );
46         }
47         _id = id.substring( 3 );
48     }
49
50     @Override
51     public int compareTo( final GoId id ) {
52         return getId().compareTo( id.getId() );
53     }
54
55     @Override
56     public boolean equals( final Object o ) {
57         if ( this == o ) {
58             return true;
59         }
60         else if ( o == null ) {
61             throw new IllegalArgumentException( "attempt to check go id equality to null" );
62         }
63         else if ( o.getClass() != this.getClass() ) {
64             throw new IllegalArgumentException( "attempt to check go id equality to " + o + " [" + o.getClass() + "]" );
65         }
66         else {
67             return getId().equals( ( ( GoId ) o ).getId() );
68         }
69     }
70
71     public String getId() {
72         return GO_PREFIX + _id;
73     }
74
75     @Override
76     public int hashCode() {
77         return getId().hashCode();
78     }
79
80     @Override
81     public String toString() {
82         return getId();
83     }
84 }