Copyright test
[jalview.git] / src / com / stevesoft / pat / Prop.java
1 /*******************************************************************************
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $(date) The Jalview Authors
4  *
5  * This file is part of Jalview.
6  *  
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *   
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  *******************************************************************************/
21 //
22 // This software is now distributed according to
23 // the Lesser Gnu Public License.  Please see
24 // http://www.gnu.org/copyleft/lesser.txt for
25 // the details.
26 //    -- Happy Computing!
27 //
28 package com.stevesoft.pat;
29
30 /**
31  * Get Unicode properties for a character. See <a
32  * href="http://unicode.org">http://unicode.org</a>.
33  */
34 public class Prop
35 {
36   /** Is this a "Decimal Digit" according to Unicode? */
37   public final static boolean isDecimalDigit(char c)
38   {
39     if (Bits.decimal_digit == null)
40     {
41       Bits.decimal_digit_f();
42     }
43     return Bits.decimal_digit.get(c);
44   }
45
46   /** Is this a "Alphabetic" according to Unicode? */
47   public final static boolean isAlphabetic(char c)
48   {
49     if (Bits.letter == null)
50     {
51       Bits.letter_f();
52     }
53     return Bits.letter.get(c);
54   }
55
56   /** Is this a "Math" according to Unicode? */
57   public final static boolean isMath(char c)
58   {
59     if (Bits.math == null)
60     {
61       Bits.math_f();
62     }
63     return Bits.math.get(c);
64   }
65
66   /** Is this a "Currency" according to Unicode? */
67   public final static boolean isCurrency(char c)
68   {
69     if (Bits.currency == null)
70     {
71       Bits.currency_f();
72     }
73     return Bits.currency.get(c);
74   }
75
76   /** Is c a white space character according to Unicode? */
77   public final static boolean isWhite(char c)
78   {
79     if (Bits.white == null)
80     {
81       Bits.white_f();
82     }
83     return Bits.white.get(c);
84   }
85
86   /** Is c a punctuation character according to Unicode? */
87   public final static boolean isPunct(char c)
88   {
89     if (Bits.punct == null)
90     {
91       Bits.punct_f();
92     }
93     return Bits.punct.get(c);
94   }
95 }