Class VsonReader

java.lang.Object
com.linkedin.venice.schema.vson.VsonReader

@Deprecated public class VsonReader extends Object
Deprecated.
Frontend parser. Can read arbitrary strings and convert them to intermediate Objects. The intermediate objects then could be converted to either Avro or Vson Schema. It throws exceptions if syntax errors incur.
  • Constructor Details

    • VsonReader

      public VsonReader(Reader reader)
      Deprecated.
    • VsonReader

      public VsonReader(Reader reader, int contextBufferSize)
      Deprecated.
  • Method Details

    • hasMore

      public boolean hasMore()
      Deprecated.
    • read

      public Object read()
      Deprecated.
    • readObject

      public Map<String,?> readObject()
      Deprecated.
    • readArray

      public List<?> readArray()
      Deprecated.
    • readNull

      public Object readNull()
      Deprecated.
    • readBoolean

      public Boolean readBoolean()
      Deprecated.
    • readString

      public String readString()
      Deprecated.
    • readNumber

      public Number readNumber()
      Deprecated.
    • readInt

      public int readInt()
      Deprecated.
    • readFraction

      public double readFraction()
      Deprecated.
    • getCurrentLineNumber

      public int getCurrentLineNumber()
      Deprecated.
    • getCurrentLineOffset

      public int getCurrentLineOffset()
      Deprecated.
    • getCurrentContext

      public String getCurrentContext()
      Deprecated.