Class JsonInput

  • All Implemented Interfaces:
    java.io.Closeable, java.lang.AutoCloseable

    public class JsonInput
    extends java.lang.Object
    implements java.io.Closeable
    • Method Detail

      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
      • nextBoolean

        public boolean nextBoolean()
      • nextName

        public java.lang.String nextName()
      • nextNull

        public java.lang.Object nextNull()
      • nextNumber

        public java.lang.Number nextNumber()
      • nextString

        public java.lang.String nextString()
      • nextInstant

        public java.time.Instant nextInstant()
      • hasNext

        public boolean hasNext()
      • beginArray

        public void beginArray()
      • endArray

        public void endArray()
      • beginObject

        public void beginObject()
      • endObject

        public void endObject()
      • skipValue

        public void skipValue()
      • read

        public <T> T read​(java.lang.reflect.Type type)