net.sf.yavtags.util
Class CharUtils

java.lang.Object
  extended by net.sf.yavtags.util.CharUtils

public class CharUtils
extends java.lang.Object


Constructor Summary
CharUtils()
           
 
Method Summary
static boolean charIn(char c, char... chars)
          Check if a character is in a list of characters.
static boolean isAsciiLetter(char c)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CharUtils

public CharUtils()
Method Detail

isAsciiLetter

public static boolean isAsciiLetter(char c)

charIn

public static boolean charIn(char c,
                             char... chars)
Check if a character is in a list of characters.

Parameters:
c -
chars - Any set of characters to compare.
Returns:
true if c is one of chars.