Package jodd.json

Interface TypeJsonParser<T>

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface TypeJsonParser<T>
    Parser of JSON default types.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T parse​(java.lang.Object value)
      Converts JSON type (String, number...) into the target.
    • Method Detail

      • parse

        T parse​(java.lang.Object value)
        Converts JSON type (String, number...) into the target.