Interface RawFacade<J>

All Known Subinterfaces:
Facade<J>

public interface RawFacade<J>
Facade is a type class that describes how Jawn should construct JSON AST elements of type J.

Facade[J] also uses FContext[J] instances, so implementors will usually want to define both.

  • Method Details

    • arrayContext

      RawFContext<J> arrayContext(int index)
    • jfalse

      J jfalse(int index)
    • jnull

      J jnull(int index)
    • jnum

      J jnum(CharSequence s, int decIndex, int expIndex, int index)
    • jstring

      J jstring(CharSequence s, int index)
    • jtrue

      J jtrue(int index)
    • objectContext

      RawFContext<J> objectContext(int index)
    • singleContext

      RawFContext<J> singleContext(int index)