Interface ConversionProcessor<T>

    • Method Detail

      • convertByte

        Function<Byte,​T> convertByte()
        Converts a Byte type.
        Returns:
        the converted value
      • convertByteArray

        Function<byte[],​T> convertByteArray()
        Converts a byte[] type.
        Returns:
        the converted value
        Throws:
        TypeConversionException - if the number of bytes in the array is less than the minimum required to create the destination type
      • convertShort

        Function<Short,​T> convertShort()
        Converts a Short type.
        Returns:
        the converted value
      • convertLong

        Function<Long,​T> convertLong()
        Converts a Long type.
        Returns:
        the converted value
      • convertFloat

        Function<Float,​T> convertFloat()
        Converts an Float type.
        Returns:
        the converted value
      • convertDouble

        Function<Double,​T> convertDouble()
        Converts a Double type.
        Returns:
        the converted value
      • convertString

        Function<String,​T> convertString()
        Converts a String type.
        Returns:
        the converted value