Package generic.json

Class JSONToken

java.lang.Object
generic.json.JSONToken

public class JSONToken extends Object
  • Field Details

    • type

      public JSONType type
    • start

      public int start
    • end

      public int end
    • size

      public int size
  • Constructor Details

    • JSONToken

      public JSONToken(JSONType type, int start, int end)
      JSON token description.
      Parameters:
      type - the token type (object, array, string etc.)
      start - the start position in JSON data string
      end - the end position in JSON data string
  • Method Details

    • setType

      public void setType(JSONType type)
    • getType

      public JSONType getType()
    • setStart

      public void setStart(int start)
    • getStart

      public int getStart()
    • setEnd

      public void setEnd(int end)
    • getEnd

      public int getEnd()
    • setSize

      public void setSize(int size)
    • getSize

      public int getSize()
    • incSize

      public void incSize()