Class Codec.ParsingResult<A>

java.lang.Object
io.codemine.java.postgresql.codecs.Codec.ParsingResult<A>
Enclosing interface:
Codec<A>

public static final class Codec.ParsingResult<A> extends Object
Holds the parsed value together with the offset of the first unconsumed character.
  • Field Details

    • value

      public final A value
    • nextOffset

      public final int nextOffset
  • Constructor Details

    • ParsingResult

      public ParsingResult(A value, int nextOffset)