Class StringUnmarshallers
java.lang.Object
org.apache.pekko.http.javadsl.unmarshalling.StringUnmarshallers
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Unmarshaller<String,Boolean> An unmarshaller that parses the input String as a Boolean, matching "true", "yes", "on" as true, and "false", "no", "off" as false.static final Unmarshaller<String,Byte> An unmarshaller that parses the input String as a Byte in decimal notation.static final Unmarshaller<String,Byte> An unmarshaller that parses the input String as a Byte in hexadecimal notation.static final Unmarshaller<String,Double> An unmarshaller that parses the input String as a Double in decimal notation.static final Unmarshaller<String,Float> An unmarshaller that parses the input String as a Float in decimal notation.static final Unmarshaller<String,Integer> An unmarshaller that parses the input String as an Integer in decimal notation.static final Unmarshaller<String,Integer> An unmarshaller that parses the input String as an Integer in hexadecimal notation.static final Unmarshaller<String,Long> An unmarshaller that parses the input String as a Long in decimal notation.static final Unmarshaller<String,Long> An unmarshaller that parses the input String as a Long in hexadecimal notation.static final Unmarshaller<String,Short> An unmarshaller that parses the input String as a Short in decimal notation.static final Unmarshaller<String,Short> An unmarshaller that parses the input String as a Short in hexadecimal notation.static final Unmarshaller<String,String> An unmarshaller that returns the input String unchanged.static final Unmarshaller<String,UUID> An unmarshaller that parses the input String as a UUID.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
STRINGAn unmarshaller that returns the input String unchanged.
- 
BYTEAn unmarshaller that parses the input String as a Byte in decimal notation.
- 
SHORTAn unmarshaller that parses the input String as a Short in decimal notation.
- 
INTEGERAn unmarshaller that parses the input String as an Integer in decimal notation.
- 
LONGAn unmarshaller that parses the input String as a Long in decimal notation.
- 
BYTE_HEXAn unmarshaller that parses the input String as a Byte in hexadecimal notation.
- 
SHORT_HEXAn unmarshaller that parses the input String as a Short in hexadecimal notation.
- 
INTEGER_HEXAn unmarshaller that parses the input String as an Integer in hexadecimal notation.
- 
LONG_HEXAn unmarshaller that parses the input String as a Long in hexadecimal notation.
- 
FLOATAn unmarshaller that parses the input String as a Float in decimal notation.
- 
DOUBLEAn unmarshaller that parses the input String as a Double in decimal notation.
- 
BOOLEANAn unmarshaller that parses the input String as a Boolean, matching "true", "yes", "on" as true, and "false", "no", "off" as false.
- 
UUIDAn unmarshaller that parses the input String as a UUID.
 
- 
- 
Constructor Details- 
StringUnmarshallerspublic StringUnmarshallers()
 
-