Uses of Class
com.pholser.junit.quickcheck.generator.Generator

Packages that use Generator
com.pholser.junit.quickcheck.generator   
com.pholser.junit.quickcheck.internal   
com.pholser.junit.quickcheck.internal.generator   
 

Uses of Generator in com.pholser.junit.quickcheck.generator
 

Subclasses of Generator in com.pholser.junit.quickcheck.generator
 class ComponentizedGenerator<T>
          Produces values for theory parameters of types that have components that would also need generation, such as arrays, lists, and predicates.
 

Methods in com.pholser.junit.quickcheck.generator that return types with arguments of type Generator
 List<Generator<?>> ComponentizedGenerator.componentGenerators()
           
 

Methods in com.pholser.junit.quickcheck.generator with parameters of type Generator
static
<T,U> T
Lambdas.makeLambda(Class<T> lambdaType, Generator<U> returnValueGenerator, GenerationStatus status)
          Creates an instance of a given "functional interface" type, whose single abstract method returns values of the type produced by the given generator.
 

Method parameters in com.pholser.junit.quickcheck.generator with type arguments of type Generator
 void Generator.addComponentGenerators(List<Generator<?>> components)
          Adds component generators to this generator.
 void ComponentizedGenerator.addComponentGenerators(List<Generator<?>> components)
           
 

Uses of Generator in com.pholser.junit.quickcheck.internal
 

Methods in com.pholser.junit.quickcheck.internal that return Generator
 Generator<?> ParameterContext.explicitGenerator()
           
 

Uses of Generator in com.pholser.junit.quickcheck.internal.generator
 

Subclasses of Generator in com.pholser.junit.quickcheck.internal.generator
 class ArrayGenerator
           
 class CompositeGenerator
           
 class EnumGenerator
           
 class LambdaGenerator<T,U>
           
 class ZilchGenerator
           
 

Methods in com.pholser.junit.quickcheck.internal.generator that return Generator
 Generator<?> ArrayGenerator.componentGenerator()
           
 Generator<?> CompositeGenerator.componentGenerator(int index)
           
 Generator<?> GeneratorRepository.generatorFor(Type type)
           
 

Methods in com.pholser.junit.quickcheck.internal.generator that return types with arguments of type Generator
 Iterator<Generator<?>> ServiceLoaderGeneratorSource.iterator()
           
 

Methods in com.pholser.junit.quickcheck.internal.generator with parameters of type Generator
 GeneratorRepository GeneratorRepository.register(Generator<?> source)
           
 

Method parameters in com.pholser.junit.quickcheck.internal.generator with type arguments of type Generator
 GeneratorRepository GeneratorRepository.register(Iterable<Generator<?>> source)
           
 

Constructors in com.pholser.junit.quickcheck.internal.generator with parameters of type Generator
ArrayGenerator(Class<?> componentType, Generator<?> component)
           
LambdaGenerator(Class<T> lambdaType, Generator<U> returnValueGenerator)
           
 

Constructor parameters in com.pholser.junit.quickcheck.internal.generator with type arguments of type Generator
CompositeGenerator(List<Generator<?>> components)
           
 



Copyright © 2013. All Rights Reserved.