com.stevesoft.pat
Class Prop
java.lang.Object
|
+--com.stevesoft.pat.Prop
- public class Prop
- extends java.lang.Object
Get Unicode properties for a character. See
http://unicode.org.
|
Constructor Summary |
Prop()
|
|
Method Summary |
static boolean |
isAlphabetic(char c)
Is this a "Alphabetic" according to Unicode? |
static boolean |
isCurrency(char c)
Is this a "Currency" according to Unicode? |
static boolean |
isDecimalDigit(char c)
Is this a "Decimal Digit" according to Unicode? |
static boolean |
isMath(char c)
Is this a "Math" according to Unicode? |
static boolean |
isPunct(char c)
Is c a punctuation character according to Unicode? |
static boolean |
isWhite(char c)
Is c a white space character according to Unicode? |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Prop
public Prop()
isDecimalDigit
public static final boolean isDecimalDigit(char c)
- Is this a "Decimal Digit" according to Unicode?
isAlphabetic
public static final boolean isAlphabetic(char c)
- Is this a "Alphabetic" according to Unicode?
isMath
public static final boolean isMath(char c)
- Is this a "Math" according to Unicode?
isCurrency
public static final boolean isCurrency(char c)
- Is this a "Currency" according to Unicode?
isWhite
public static final boolean isWhite(char c)
- Is c a white space character according to Unicode?
isPunct
public static final boolean isPunct(char c)
- Is c a punctuation character according to Unicode?