Package Torello.Browser
Class RunTime.RemoteObject
- java.lang.Object
-
- Torello.Java.JSON.BaseType
-
- Torello.Browser.RunTime.RemoteObject
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- RunTime
public static class RunTime.RemoteObject extends BaseType implements java.io.Serializable
Mirror object referencing original JavaScript object.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/RunTime.java
- Open New Browser-Tab: Torello/Browser/RunTime.java
File Size: 8,730 Bytes Line Count: 200 '\n' Characters Found
-
-
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
EXPERIMENTALString
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 havevalue
, but gets this property.JsonValue
value
Remote object value in case of primitive values or JSON values (if it was requested).
-
Constructor Summary
Constructors Constructor Description RemoteObject(String type, String subtype, String className, JsonValue value, String unserializableValue, String description, String objectId, RunTime.ObjectPreview preview, RunTime.CustomPreview customPreview)
ConstructorRemoteObject(JsonObject jo)
JSON Object Constructor
-
Method Summary
Generate Array that Indicates which Parameter are Optional Modifier and Type Method boolean[]
optionals()
Implementing this method allows sub-classes to specify which JSON Properties may be absent or null.Methods: class java.lang.Object Modifier and Type Method boolean
equals(Object other)
Checks whether'this'
equals an input Java-Object
int
hashCode()
Generates a Hash-Code for'this'
instance
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
For Object Serialization. java.io.Serializable- See Also:
- Constant Field Values
-
type
public final java.lang.String type
Object type.
-
subtype
public final java.lang.String subtype
Object subtype hint. Specified forobject
type values only. NOTE: If you change anything here, make sure to also updatesubtype
inObjectPreview
andPropertyPreview
below.
OPTIONAL
-
className
public final java.lang.String className
Object class (constructor) name. Specified forobject
type values only.
OPTIONAL
-
value
-
unserializableValue
public final java.lang.String unserializableValue
Primitive value which can not be JSON-stringified does not havevalue
, but gets this property.
OPTIONAL
-
description
public final java.lang.String description
String representation of the object.
OPTIONAL
-
objectId
public final java.lang.String objectId
Unique object identifier (for non-primitive values).
OPTIONAL
-
preview
public final RunTime.ObjectPreview preview
Preview containing abbreviated property values. Specified forobject
type values only.
OPTIONAL
EXPERIMENTAL
-
customPreview
public final RunTime.CustomPreview customPreview
[No Description Provided by Google]
OPTIONAL
EXPERIMENTAL
-
-
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 forobject
type values only. NOTE: If you change anything here, make sure to also updatesubtype
inObjectPreview
andPropertyPreview
below.
Acceptable Values: ["array", "null", "node", "regexp", "date", "map", "set", "weakmap", "weakset", "iterator", "generator", "error", "proxy", "promise", "typedarray", "arraybuffer", "dataview", "webassemblymemory", "wasmvalue"]
OPTIONALclassName
- Object class (constructor) name. Specified forobject
type values only.
OPTIONALvalue
- Remote object value in case of primitive values or JSON values (if it was requested).
OPTIONALunserializableValue
- Primitive value which can not be JSON-stringified does not havevalue
, but gets this property.
OPTIONALdescription
- String representation of the object.
OPTIONALobjectId
- Unique object identifier (for non-primitive values).
OPTIONALpreview
- Preview containing abbreviated property values. Specified forobject
type values only.
OPTIONAL
EXPERIMENTALcustomPreview
- -
OPTIONAL
EXPERIMENTAL
-
RemoteObject
public RemoteObject(JsonObject jo)
JSON Object Constructor- Parameters:
jo
- A Json-Object having data about an instance of'RemoteObject'
.
-
-
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 aJsonObject
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 positionTRUE
.
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...
-
equals
public boolean equals(java.lang.Object other)
Checks whether'this'
equals an input Java-Object
- Overrides:
equals
in classjava.lang.Object
- Code:
- Exact Method Body:
if (other == null) return false; if (other.getClass() != this.getClass()) return false; RemoteObject o = (RemoteObject) other; return Objects.equals(this.type, o.type) && Objects.equals(this.subtype, o.subtype) && Objects.equals(this.className, o.className) && Objects.equals(this.value, o.value) && Objects.equals(this.unserializableValue, o.unserializableValue) && Objects.equals(this.description, o.description) && Objects.equals(this.objectId, o.objectId) && Objects.equals(this.preview, o.preview) && Objects.equals(this.customPreview, o.customPreview);
-
hashCode
public int hashCode()
Generates a Hash-Code for'this'
instance- Overrides:
hashCode
in classjava.lang.Object
- Code:
- Exact Method Body:
return Objects.hashCode(this.type) + Objects.hashCode(this.subtype) + Objects.hashCode(this.className) + Objects.hashCode(this.value) + Objects.hashCode(this.unserializableValue) + Objects.hashCode(this.description) + Objects.hashCode(this.objectId) + this.preview.hashCode() + this.customPreview.hashCode();
-
-