Package ru.ispras.fortress.randomizer
Interface Variate<T>
-
- Type Parameters:
T
- the type of the random variate values.
- All Known Implementing Classes:
VariateBiased
,VariateCollection
,VariateComposite
,VariateInterval
,VariateSingleValue
public interface Variate<T>
This is an interface for aT
-type random variate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
value()
Returns a value (instance) of the random variate.
-
-
-
Method Detail
-
value
T value()
Returns a value (instance) of the random variate.- Returns:
- a random variate value.
-
-