Class SeedConverterComposer<IN,​TRANS,​OUT>

  • Type Parameters:
    IN - Input seed type.
    TRANS - Transitional seed type.
    OUT - Output seed type.
    All Implemented Interfaces:
    SeedConverter<IN,​OUT>

    public class SeedConverterComposer<IN,​TRANS,​OUT>
    extends java.lang.Object
    implements SeedConverter<IN,​OUT>
    Composes two converters.
    Since:
    1.0
    • Method Summary

      Modifier and Type Method Description
      OUT convert​(IN seed)
      Converts seed from input type to output type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • convert

        public OUT convert​(IN seed)
        Converts seed from input type to output type.
        Specified by:
        convert in interface SeedConverter<IN,​TRANS>
        Parameters:
        seed - Original seed value.
        Returns:
        the converted seed value.