Class RunTime.RemoteObject

    • Field Summary

       
      Serializable ID
      Modifier and Type Field
      protected static long serialVersionUID
      For Object Serialization.
       
      Type Properties
      Modifier and Type Field
      String className
      Object class (constructor) name.
      RunTime.CustomPreview customPreview
      [No Description Provided by Google]

      OPTIONAL
      EXPERIMENTAL
      String description
      String representation of the object.
      String objectId
      Unique object identifier (for non-primitive values).
      RunTime.ObjectPreview preview
      Preview containing abbreviated property values.
      String subtype
      Object subtype hint.
      String type
      Object type.
      String unserializableValue
      Primitive value which can not be JSON-stringified does not have value, but gets this property.
      JsonValue value
      Remote object value in case of primitive values or JSON values (if it was requested).
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean[] optionals()
      Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • RemoteObject

        🡅  🡇     🗕  🗗  🗖
        public RemoteObject​(java.lang.String type,
                            java.lang.String subtype,
                            java.lang.String className,
                            JsonValue value,
                            java.lang.String unserializableValue,
                            java.lang.String description,
                            java.lang.String objectId,
                            RunTime.ObjectPreview preview,
                            RunTime.CustomPreview customPreview)
        Constructor
        Parameters:
        type - Object type.
        Acceptable Values: ["object", "function", "undefined", "string", "number", "boolean", "symbol", "bigint"]
        subtype - Object subtype hint. Specified for object type values only. NOTE: If you change anything here, make sure to also update subtype in ObjectPreview and PropertyPreview below.
        Acceptable Values: ["array", "null", "node", "regexp", "date", "map", "set", "weakmap", "weakset", "iterator", "generator", "error", "proxy", "promise", "typedarray", "arraybuffer", "dataview", "webassemblymemory", "wasmvalue"]
        OPTIONAL
        className - Object class (constructor) name. Specified for object type values only.
        OPTIONAL
        value - Remote object value in case of primitive values or JSON values (if it was requested).
        OPTIONAL
        unserializableValue - Primitive value which can not be JSON-stringified does not have value, but gets this property.
        OPTIONAL
        description - String representation of the object.
        OPTIONAL
        objectId - Unique object identifier (for non-primitive values).
        OPTIONAL
        preview - Preview containing abbreviated property values. Specified for object type values only.
        OPTIONAL
        EXPERIMENTAL
        customPreview - -
        OPTIONAL
        EXPERIMENTAL
    • Method Detail

      • optionals

        🡅     🗕  🗗  🗖
        public boolean[] optionals()
        Description copied from class: BaseType
        Implementing this method allows sub-classes to specify which JSON Properties may be absent or null. When binding a JsonObject to a Java-Object, if some of the expected fields for the Java-Object map to Properties which might be left-out or omitted, then that may be indicated by setting that fields array position TRUE.

        NOTE: This array should have a length equal to the number of fields contained by the Java Object. The first boolean in the array should specify whether the first Object Field may by absent. The second boolean should specify whether the second Object Field is optional in the JSON - and so on and so forth...
        Specified by:
        optionals in class BaseType
        Returns:
        A boolean[] array whose length is precisely equal to the number of fields in the Java Object.