Class StringUnmarshallers

java.lang.Object
akka.http.javadsl.unmarshalling.StringUnmarshallers

public final class StringUnmarshallers extends Object
  • Field Details

    • STRING

      public static final Unmarshaller<String,String> STRING
      An unmarshaller that returns the input String unchanged.
    • BYTE

      public static final Unmarshaller<String,Byte> BYTE
      An unmarshaller that parses the input String as a Byte in decimal notation.
    • SHORT

      public static final Unmarshaller<String,Short> SHORT
      An unmarshaller that parses the input String as a Short in decimal notation.
    • INTEGER

      public static final Unmarshaller<String,Integer> INTEGER
      An unmarshaller that parses the input String as an Integer in decimal notation.
    • LONG

      public static final Unmarshaller<String,Long> LONG
      An unmarshaller that parses the input String as a Long in decimal notation.
    • BYTE_HEX

      public static final Unmarshaller<String,Byte> BYTE_HEX
      An unmarshaller that parses the input String as a Byte in hexadecimal notation.
    • SHORT_HEX

      public static final Unmarshaller<String,Short> SHORT_HEX
      An unmarshaller that parses the input String as a Short in hexadecimal notation.
    • INTEGER_HEX

      public static final Unmarshaller<String,Integer> INTEGER_HEX
      An unmarshaller that parses the input String as an Integer in hexadecimal notation.
    • LONG_HEX

      public static final Unmarshaller<String,Long> LONG_HEX
      An unmarshaller that parses the input String as a Long in hexadecimal notation.
    • FLOAT

      public static final Unmarshaller<String,Float> FLOAT
      An unmarshaller that parses the input String as a Float in decimal notation.
    • DOUBLE

      public static final Unmarshaller<String,Double> DOUBLE
      An unmarshaller that parses the input String as a Double in decimal notation.
    • BOOLEAN

      public static final Unmarshaller<String,Boolean> BOOLEAN
      An unmarshaller that parses the input String as a Boolean, matching "true", "yes", "on" as true, and "false", "no", "off" as false.
    • UUID

      public static final Unmarshaller<String,UUID> UUID
      An unmarshaller that parses the input String as a UUID.
  • Constructor Details

    • StringUnmarshallers

      public StringUnmarshallers()