Class SetVariableResponse.ResponseBody

java.lang.Object
com.oracle.truffle.tools.dap.types.JSONBase
com.oracle.truffle.tools.dap.types.SetVariableResponse.ResponseBody
Enclosing class:
SetVariableResponse

public static class SetVariableResponse.ResponseBody extends JSONBase
  • Method Details

    • getValue

      public String getValue()
      The new value of the variable.
    • setValue

      public SetVariableResponse.ResponseBody setValue(String value)
    • getType

      public String getType()
      The type of the new value. Typically shown in the UI when hovering over the value.
    • setType

    • getVariablesReference

      public Integer getVariablesReference()
      If variablesReference is > 0, the new value is structured and its children can be retrieved by passing variablesReference to the VariablesRequest. The value should be less than or equal to 2147483647 (2^31 - 1).
    • setVariablesReference

      public SetVariableResponse.ResponseBody setVariablesReference(Integer variablesReference)
    • getNamedVariables

      public Integer getNamedVariables()
      The number of named child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
    • setNamedVariables

      public SetVariableResponse.ResponseBody setNamedVariables(Integer namedVariables)
    • getIndexedVariables

      public Integer getIndexedVariables()
      The number of indexed child variables. The client can use this optional information to present the variables in a paged UI and fetch them in chunks. The value should be less than or equal to 2147483647 (2^31 - 1).
    • setIndexedVariables

      public SetVariableResponse.ResponseBody setIndexedVariables(Integer indexedVariables)
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • create

      public static SetVariableResponse.ResponseBody create(String value)