Class DoubleConversionProcessor

java.lang.Object
com.expediagroup.beans.conversion.processor.impl.DoubleConversionProcessor
All Implemented Interfaces:
ConversionProcessor<java.lang.Double>

public final class DoubleConversionProcessor
extends java.lang.Object
implements ConversionProcessor<java.lang.Double>
Provides all method for converting any primitive type to a Double.
  • Constructor Summary

    Constructors
    Constructor Description
    DoubleConversionProcessor()  
  • Method Summary

    Modifier and Type Method Description
    java.util.function.Function<java.math.BigDecimal,​java.lang.Double> convertBigDecimal()
    Converts an BigDecimal type.
    java.util.function.Function<java.math.BigInteger,​java.lang.Double> convertBigInteger()
    Converts an BigInteger type.
    java.util.function.Function<java.lang.Boolean,​java.lang.Double> convertBoolean()
    Converts a Boolean type.
    java.util.function.Function<java.lang.Byte,​java.lang.Double> convertByte()
    Converts a Byte type.
    java.util.function.Function<byte[],​java.lang.Double> convertByteArray()
    Converts a byte[] type.
    java.util.function.Function<java.lang.Character,​java.lang.Double> convertCharacter()
    Converts a Character type.
    java.util.function.Function<java.lang.Double,​java.lang.Double> convertDouble()
    Converts a Double type.
    java.util.function.Function<java.lang.Float,​java.lang.Double> convertFloat()
    Converts an Float type.
    java.util.function.Function<java.lang.Integer,​java.lang.Double> convertInteger()
    Converts an Integer type.
    java.util.function.Function<java.lang.Long,​java.lang.Double> convertLong()
    Converts a Long type.
    java.util.function.Function<java.lang.Short,​java.lang.Double> convertShort()
    Converts a Short type.
    java.util.function.Function<java.lang.String,​java.lang.Double> convertString()
    Converts a String type.

    Methods inherited from class java.lang.Object

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

    • DoubleConversionProcessor

      public DoubleConversionProcessor()
  • Method Details

    • convertByte

      public java.util.function.Function<java.lang.Byte,​java.lang.Double> convertByte()
      Converts a Byte type.
      Specified by:
      convertByte in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertByteArray

      public java.util.function.Function<byte[],​java.lang.Double> convertByteArray()
      Converts a byte[] type.
      Specified by:
      convertByteArray in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertShort

      public java.util.function.Function<java.lang.Short,​java.lang.Double> convertShort()
      Converts a Short type.
      Specified by:
      convertShort in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertInteger

      public java.util.function.Function<java.lang.Integer,​java.lang.Double> convertInteger()
      Converts an Integer type.
      Specified by:
      convertInteger in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertLong

      public java.util.function.Function<java.lang.Long,​java.lang.Double> convertLong()
      Converts a Long type.
      Specified by:
      convertLong in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertFloat

      public java.util.function.Function<java.lang.Float,​java.lang.Double> convertFloat()
      Converts an Float type.
      Specified by:
      convertFloat in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertDouble

      public java.util.function.Function<java.lang.Double,​java.lang.Double> convertDouble()
      Converts a Double type.
      Specified by:
      convertDouble in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertCharacter

      public java.util.function.Function<java.lang.Character,​java.lang.Double> convertCharacter()
      Converts a Character type.
      Specified by:
      convertCharacter in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertBoolean

      public java.util.function.Function<java.lang.Boolean,​java.lang.Double> convertBoolean()
      Converts a Boolean type.
      Specified by:
      convertBoolean in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertString

      public java.util.function.Function<java.lang.String,​java.lang.Double> convertString()
      Converts a String type.
      Specified by:
      convertString in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertBigInteger

      public java.util.function.Function<java.math.BigInteger,​java.lang.Double> convertBigInteger()
      Converts an BigInteger type.
      Specified by:
      convertBigInteger in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value
    • convertBigDecimal

      public java.util.function.Function<java.math.BigDecimal,​java.lang.Double> convertBigDecimal()
      Converts an BigDecimal type.
      Specified by:
      convertBigDecimal in interface ConversionProcessor<java.lang.Double>
      Returns:
      the converted value