Uses of Class
com.lonniepryor.blues.util.Characters

Packages that use Characters
com.lonniepryor.blues.util Common utility classes used throughout the Blues Framework. 
 

Uses of Characters in com.lonniepryor.blues.util
 

Methods in com.lonniepryor.blues.util that return Characters
static Characters Characters.digits()
          Returns a specification satisfied by digit characters.
static Characters Characters.letters()
          Returns a specification satisfied by letter characters.
static Characters Characters.lowerCase()
          Returns a specification satisfied by upper case characters.
static Characters Characters.upperCase()
          Returns a specification satisfied by upper case characters.
static Characters Characters.whitespace()
          Returns a specification satisfied by whitespace characters.
static Characters Characters.equalTo(char c)
          Returns a specification satisfied by the specified character.
 Characters Characters.and(Characters specification)
          Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right.
 Characters Characters.or(Characters specification)
          Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right.
 Characters Characters.not()
          Returns a specification representing a logical NOT of this specification.
 

Methods in com.lonniepryor.blues.util with parameters of type Characters
 Characters Characters.and(Characters specification)
          Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right.
 Characters Characters.or(Characters specification)
          Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right.
static Strings Strings.matching(Characters specification)
          Returns a specification satisfied by strings with a single character that satisfies the specified specification.
static Strings.Builder Strings.startingWith(Characters specification)
          Returns a Builder whose resulting Strings specification will require the supplied character at the beginning of canidate strings.
 Strings.Builder Strings.Builder.followedBy(Characters specification)
          Returns a Builder whose resulting Strings specification will require the supplied character at this point in canidate strings.
 Strings Strings.Builder.endingWith(Characters specification)
          Returns a Strings specification that will require the supplied character at the end of canidate strings.
 



Copyright © 2003 Blues Framework. All Rights Reserved.