Package io.jenetics.util
Interface Copyable<T>
-
- Type Parameters:
T- the type of the copied object
- All Known Implementing Classes:
ArrayISeq,CharSeq,Engine.Builder
public interface Copyable<T>
This interface indicates, that a class can create a copy of typeT. Typically, classes which implement this interface, are able to create a copy from itself.- Since:
- 1.0
- Version:
- 1.0
- Author:
- Franz Wilhelmstötter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcopy()Return a new copy of typeT.
-