Package com.garrettAndPeter.lib
Interface Generator<T>
-
- Type Parameters:
T
- the organism the Generator will Generate
- All Known Implementing Classes:
StringGenerator
public interface Generator<T>
An interface that defines the creation of a new organims of a given type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
createRandom()
Create a new (First Generation) organism
-
-
-
Method Detail
-
createRandom
T createRandom()
Create a new (First Generation) organism
-
-