Interface SeedConverter<IN,OUT>
-
- Type Parameters:
IN
- Input seed type.OUT
- Output seed type.
- All Known Subinterfaces:
Seed2ArrayConverter<IN,OUT>
- All Known Implementing Classes:
ByteArray2IntArray
,ByteArray2LongArray
,Int2Long
,IntArray2Int
,IntArray2LongArray
,Long2Int
,Long2IntArray
,Long2LongArray
,LongArray2IntArray
,LongArray2Long
,NoOpConverter
,SeedConverterComposer
public interface SeedConverter<IN,OUT>
Seed converter.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OUT
convert(IN seed)
Converts seed from input type to output type.
-