JAL-2844 partitioning code made slightly clearer
[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: https://sites.google.com/site/cmzmasek/home/software/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_ASPERGILLUS_STR ) ) {
50             _type = Type.GOSLIM_ASPERGILLUS;
51         }
52         else if ( my_s.equals( GOSLIM_PLANT_STR ) ) {
53             _type = Type.GOSLIM_PLANT;
54         }
55         else if ( my_s.equals( GOSLIM_YEAST_STR ) ) {
56             _type = Type.GOSLIM_YEAST;
57         }
58         else if ( my_s.equals( GOSLIM_POMBE_STR ) ) {
59             _type = Type.GOSLIM_POMBE;
60         }
61         else {
62             _type = Type.OTHER;
63         }
64     }
65
66     public BasicGoSubset( final Type type ) {
67         _type = type;
68     }
69
70     @Override
71     public int compareTo( final GoSubset sub ) {
72         return getType().compareTo( sub.getType() );
73     }
74
75     @Override
76     public boolean equals( final Object o ) {
77         if ( this == o ) {
78             return true;
79         }
80         else if ( o == null ) {
81             throw new IllegalArgumentException( "attempt to check go subset equality to null" );
82         }
83         else if ( o.getClass() != this.getClass() ) {
84             throw new IllegalArgumentException( "attempt to check go subset equality to " + o + " [" + o.getClass()
85                                                 + "]" );
86         }
87         else {
88             return ( getType() == ( ( GoSubset ) o ).getType() );
89         }
90     }
91
92     @Override
93     public Type getType() {
94         return _type;
95     }
96
97     @Override
98     public String toString() {
99         final StringBuilder sb = new StringBuilder();
100         switch ( getType() ) {
101             case GOSLIM_CANDIDA:
102                 sb.append( GOSLIM_CANDIDA_STR );
103                 break;
104             case GOSLIM_GENERIC:
105                 sb.append( GOSLIM_GENERIC_STR );
106                 break;
107             case GOSLIM_GOA:
108                 sb.append( GOSLIM_GOA_STR );
109                 break;
110             case GOSLIM_PIR:
111                 sb.append( GOSLIM_PIR_STR );
112                 break;
113             case GOSLIM_PLANT:
114                 sb.append( GOSLIM_PLANT_STR );
115                 break;
116             case GOSLIM_ASPERGILLUS:
117                 sb.append( GOSLIM_ASPERGILLUS_STR );
118                 break;
119             case GOSLIM_YEAST:
120                 sb.append( GOSLIM_YEAST_STR );
121                 break;
122             case GOSUBSET_PROK:
123                 sb.append( GOSUBSET_PROK_STR );
124                 break;
125             case GOSLIM_POMBE:
126                 sb.append( GOSLIM_POMBE_STR );
127                 break;
128             case OTHER:
129                 sb.append( "other" );
130                 break;
131         }
132         return sb.toString();
133     }
134 }