Class FloatArrayDoubleArrayConverter

  • All Implemented Interfaces:
    Converter<float[],​double[]>

    public class FloatArrayDoubleArrayConverter
    extends java.lang.Object
    implements Converter<float[],​double[]>
    Converts a float[] to a double[]
    Author:
    jschwarz
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double[] convert​(float[] floats)
      Converts the specified object and returns the conversion result.
      • Methods inherited from class java.lang.Object

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

      • FloatArrayDoubleArrayConverter

        public FloatArrayDoubleArrayConverter()
    • Method Detail

      • convert

        public double[] convert​(float[] floats)
        Description copied from interface: Converter
        Converts the specified object and returns the conversion result.

        Implementations have to accept null-values without throwing exceptions.

        Specified by:
        convert in interface Converter<float[],​double[]>
        Parameters:
        floats - object to convert
        Returns:
        the converted object