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

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

Uses of Parameters in com.lonniepryor.blues.util
 

Methods in com.lonniepryor.blues.util that return Parameters
static Parameters Parameters.any()
          Returns a specification satified by non-null Class arrays.
static Parameters Parameters.withNoElements()
          Returns a specification satified by empty Class arrays.
static Parameters Parameters.withOneElement()
          Returns a specification satified by Class arrays with exactly one element.
static Parameters Parameters.withNumElements(int numberOfElements)
          Creates a new specification satified by Class arrays with the specified number of elements.
static Parameters Parameters.withElement(Types specification)
          Creates a new specification satified by Class arrays with one element that satisifies the supplied specification.
static Parameters Parameters.withElements(Types[] specifications)
          Creates a new specification satified by Class arrays with elements that satisify the supplied specifications, in order.
static Parameters Parameters.parse(java.lang.String parametersPattern)
          Parses a pattern string into a complete Parameters specification.
 Parameters Parameters.and(Parameters specification)
          Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right.
 Parameters Parameters.or(Parameters specification)
          Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right.
 Parameters Parameters.not()
          Returns a specification representing a logical NOT of this specification.
 Parameters Parameters.Builder.endingWithAny()
          Returns a Parameters specification that will allow any number of elements at the end of the sequence.
 Parameters Parameters.Builder.endingWithElement(Types specification)
          Returns a Parameters specification that will require the supplied element at the end of the sequence.
 Parameters Parameters.Builder.endingWithElements(Types[] specifications)
          Returns a Parameters specification that will require the supplied elements at the end of the sequence.
 

Methods in com.lonniepryor.blues.util with parameters of type Parameters
static Methods Methods.taking(Parameters specification)
          Creates a new specification satisfied only by Methods with parameter Lists that satisfy the supplied specification.
 Parameters Parameters.and(Parameters specification)
          Returns a specification representing a logical AND of this specification on the left and the supplied specification on the right.
 Parameters Parameters.or(Parameters specification)
          Returns a specification representing a logical OR of this specification on the left and the supplied specification on the right.
static Constructors Constructors.taking(Parameters specification)
          Creates a new specification satisfied only by Constructors with parameter Lists that satisfy the supplied specification.
 



Copyright © 2003 Blues Framework. All Rights Reserved.