de2f65f0c15cde95315b0c7b5ead4f68a13171c7
[jalview.git] / forester / java / src / org / forester / go / BasicGoSubset.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 public class BasicGoSubset implements GoSubset {
29
30     final Type _type;
31
32     public BasicGoSubset( final String s ) {
33         final String my_s = s.trim().toLowerCase();
34         if ( my_s.equals( GOSLIM_GENERIC_STR ) ) {
35             _type = Type.GOSLIM_GENERIC;
36         }
37         else if ( my_s.equals( GOSLIM_GOA_STR ) ) {
38             _type = Type.GOSLIM_GOA;
39         }
40         else if ( my_s.equals( GOSLIM_PIR_STR ) ) {
41             _type = Type.GOSLIM_PIR;
42         }
43         else if ( my_s.equals( GOSUBSET_PROK_STR ) ) {
44             _type = Type.GOSUBSET_PROK;
45         }
46         else if ( my_s.equals( GOSLIM_CANDIDA_STR ) ) {
47             _type = Type.GOSLIM_CANDIDA;
48         }
49         else if ( my_s.equals( GOSLIM_PLANT_STR ) ) {
50             _type = Type.GOSLIM_PLANT;
51         }
52         else if ( my_s.equals( GOSLIM_YEAST_STR ) ) {
53             _type = Type.GOSLIM_YEAST;
54         }
55         else if ( my_s.equals( GOSLIM_POMBE_STR ) ) {
56             _type = Type.GOSLIM_POMBE;
57         }
58         else {
59             throw new IllegalArgumentException( "unknown GO subset type: " + my_s );
60         }
61     }
62
63     public BasicGoSubset( final Type type ) {
64         _type = type;
65     }
66
67     @Override
68     public int compareTo( final GoSubset sub ) {
69         return getType().compareTo( sub.getType() );
70     }
71
72     @Override
73     public boolean equals( final Object o ) {
74         if ( this == o ) {
75             return true;
76         }
77         else if ( o == null ) {
78             throw new IllegalArgumentException( "attempt to check go subset equality to null" );
79         }
80         else if ( o.getClass() != this.getClass() ) {
81             throw new IllegalArgumentException( "attempt to check go subset equality to " + o + " [" + o.getClass()
82                     + "]" );
83         }
84         else {
85             return ( getType() == ( ( GoSubset ) o ).getType() );
86         }
87     }
88
89     @Override
90     public Type getType() {
91         return _type;
92     }
93
94     @Override
95     public String toString() {
96         final StringBuilder sb = new StringBuilder();
97         switch ( getType() ) {
98             case GOSLIM_CANDIDA:
99                 sb.append( GOSLIM_CANDIDA_STR );
100                 break;
101             case GOSLIM_GENERIC:
102                 sb.append( GOSLIM_GENERIC_STR );
103                 break;
104             case GOSLIM_GOA:
105                 sb.append( GOSLIM_GOA_STR );
106                 break;
107             case GOSLIM_PIR:
108                 sb.append( GOSLIM_PIR_STR );
109                 break;
110             case GOSLIM_PLANT:
111                 sb.append( GOSLIM_PLANT_STR );
112                 break;
113             case GOSLIM_YEAST:
114                 sb.append( GOSLIM_YEAST_STR );
115                 break;
116             case GOSUBSET_PROK:
117                 sb.append( GOSUBSET_PROK_STR );
118                 break;
119             case GOSLIM_POMBE:
120                 sb.append( GOSLIM_POMBE_STR );
121                 break;
122             default:
123                 new AssertionError( "unknown type: " + getType() );
124         }
125         return sb.toString();
126     }
127 }