Uses of Interface
net.sf.qualitytest.blueprint.MatchingStrategy

Packages that use MatchingStrategy
net.sf.qualitytest.blueprint   
net.sf.qualitytest.blueprint.strategy.matching   
 

Uses of MatchingStrategy in net.sf.qualitytest.blueprint
 

Fields in net.sf.qualitytest.blueprint declared as MatchingStrategy
static MatchingStrategy Match.BUILDER_METHODS
          Match all public methods of classes with a name ending in "Builder".
static MatchingStrategy Match.SETTER_METHODS
          Match all methods which are setter-methods.
 

Methods in net.sf.qualitytest.blueprint that return MatchingStrategy
static MatchingStrategy Match.instanceOf(Class<?> clazz)
          Match all classes that are instances of a type.
static MatchingStrategy Match.name(String name)
          Match by method or attribute name..
static MatchingStrategy Match.type(Class<?> clazz)
          Match a type.
 

Methods in net.sf.qualitytest.blueprint with parameters of type MatchingStrategy
<T> BlueprintConfiguration
BlueprintConfiguration.with(MatchingStrategy matchingStrategy)
          Blueprint everything matching a given MatchingStrategy using this configuration.
 BlueprintConfiguration BlueprintConfiguration.with(MatchingStrategy matcher, CreationStrategy<?> creator)
          Replace every attribute which matches a given strategy with a given value.
 

Uses of MatchingStrategy in net.sf.qualitytest.blueprint.strategy.matching
 

Classes in net.sf.qualitytest.blueprint.strategy.matching that implement MatchingStrategy
 class AbstractTypeMatchingStrategy
          Match classes which are abstract.
 class ArrayTypeMatchingStrategy
          Match all class types that are arrays.
 class BuilderMethodMatchingStrategy
          Matches all methods, which belong to a class implementing the builder pattern.
 class CaseInsensitiveMethodNameMatchingStrategy
          This value matching strategy matches string names case insensitively on the method name.
 class InstanceOfTypeMatchingStrategy
          Match a value based on its type or supertype.
 class SetterMethodMatchingStrategy
          This value matching strategy matches all methods that are setters, i.e. start with the prefix 'set'.
 class TypeMatchingStrategy
          Match a value based on its exact type.
 



Copyright © 2012-2013. All Rights Reserved.