Class SetExpressionResponse.ResponseBody

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

public static class SetExpressionResponse.ResponseBody extends JSONBase
  • Method Details

    • getValue

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

      public SetExpressionResponse.ResponseBody setValue(String value)
    • getType

      public String getType()
      The optional type of the value. This attribute should only be returned by a debug adapter if the client has passed the value true for the 'supportsVariableType' capability of the 'initialize' request.
    • setType

    • getPresentationHint

      public VariablePresentationHint getPresentationHint()
      Properties of a value that can be used to determine how to render the result in the UI.
    • setPresentationHint

      public SetExpressionResponse.ResponseBody setPresentationHint(VariablePresentationHint presentationHint)
    • getVariablesReference

      public Integer getVariablesReference()
      If variablesReference is > 0, the 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 SetExpressionResponse.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 SetExpressionResponse.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 SetExpressionResponse.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 SetExpressionResponse.ResponseBody create(String value)