Class StringUnmarshaller


  • public class StringUnmarshaller
    extends java.lang.Object
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <B> Unmarshaller<java.lang.String,​B> async​(java.util.function.Function<java.lang.String,​java.util.concurrent.CompletionStage<B>> f)
      Turns the given asynchronous function into an unmarshaller from String to B.
      static <B> Unmarshaller<java.lang.String,​B> sync​(java.util.function.Function<java.lang.String,​B> f)
      Turns the given function into an unmarshaller from String to B.
      • Methods inherited from class java.lang.Object

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

      • StringUnmarshaller

        public StringUnmarshaller()
    • Method Detail

      • async

        public static <B> Unmarshaller<java.lang.String,​B> async​(java.util.function.Function<java.lang.String,​java.util.concurrent.CompletionStage<B>> f)
        Turns the given asynchronous function into an unmarshaller from String to B.
        Parameters:
        f - (undocumented)
        Returns:
        (undocumented)
      • sync

        public static <B> Unmarshaller<java.lang.String,​B> sync​(java.util.function.Function<java.lang.String,​B> f)
        Turns the given function into an unmarshaller from String to B.
        Parameters:
        f - (undocumented)
        Returns:
        (undocumented)