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

    Modifier and Type
    Method
    Description
    convert(IN seed)
    Converts seed from input type to output type.
  • Method Details

    • convert

      OUT convert(IN seed)
      Converts seed from input type to output type.
      Parameters:
      seed - Original seed value.
      Returns:
      the converted seed value.