Package org.apache.commons.rng.sampling
Interface ObjectSampler<T>
-
- Type Parameters:
T- Type of the sample.
- All Known Subinterfaces:
SharedStateObjectSampler<T>
- All Known Implementing Classes:
BoxSampler,CollectionSampler,CombinationSampler,DirichletSampler,DiscreteProbabilityCollectionSampler,LineSampler,PermutationSampler,TetrahedronSampler,TriangleSampler,UnitBallSampler,UnitSphereSampler
public interface ObjectSampler<T>
Sampler that generates values of a specified type.- Since:
- 1.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tsample()Create a sample.
-