protobufjs 4.1.2 → 5.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +3 -1
- package/README.md +147 -25
- package/bin/pbjs +2 -2
- package/bower.json +3 -3
- package/cli/pbjs/targets/amd.js +1 -1
- package/cli/pbjs/targets/json.js +9 -1
- package/cli/pbjs/targets/proto.js +48 -24
- package/cli/pbjs/util.js +1 -1
- package/cli/pbjs.js +9 -2
- package/dist/README.md +10 -10
- package/dist/{ProtoBuf-light.js → protobuf-light.js} +207 -152
- package/dist/protobuf-light.min.js +94 -0
- package/dist/protobuf-light.min.js.gz +0 -0
- package/dist/protobuf-light.min.map +8 -0
- package/dist/{ProtoBuf.js → protobuf.js} +265 -175
- package/dist/protobuf.min.js +116 -0
- package/dist/protobuf.min.js.gz +0 -0
- package/dist/protobuf.min.map +8 -0
- package/docs/ProtoBuf.Builder.Message.html +1473 -967
- package/docs/ProtoBuf.Builder.Service.html +266 -197
- package/docs/ProtoBuf.Builder.html +758 -542
- package/docs/ProtoBuf.DotProto.Parser.html +223 -161
- package/docs/ProtoBuf.DotProto.Tokenizer.html +344 -248
- package/docs/ProtoBuf.DotProto.html +20 -12
- package/docs/ProtoBuf.Element.html +554 -554
- package/docs/ProtoBuf.Map.html +158 -123
- package/docs/ProtoBuf.Reflect.Element.html +286 -143
- package/docs/ProtoBuf.Reflect.Enum.Value.html +329 -228
- package/docs/ProtoBuf.Reflect.Enum.html +757 -537
- package/docs/ProtoBuf.Reflect.Extension.html +73 -56
- package/docs/ProtoBuf.Reflect.Message.ExtensionField.html +1013 -740
- package/docs/ProtoBuf.Reflect.Message.Field.html +926 -649
- package/docs/ProtoBuf.Reflect.Message.OneOf.html +327 -245
- package/docs/ProtoBuf.Reflect.Message.html +919 -652
- package/docs/ProtoBuf.Reflect.Namespace.html +648 -447
- package/docs/ProtoBuf.Reflect.Service.Method.html +363 -251
- package/docs/ProtoBuf.Reflect.Service.RPCMethod.html +545 -397
- package/docs/ProtoBuf.Reflect.Service.html +721 -511
- package/docs/ProtoBuf.Reflect.T.html +268 -197
- package/docs/ProtoBuf.Reflect.html +20 -12
- package/docs/ProtoBuf.Util.html +169 -118
- package/docs/ProtoBuf.html +840 -628
- package/docs/ProtoBuf.js.html +271 -180
- package/docs/fonts/OpenSans-Bold-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Bold-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Bold-webfont.woff +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-BoldItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Italic-webfont.svg +1830 -0
- package/docs/fonts/OpenSans-Italic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Light-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Light-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Light-webfont.woff +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.eot +0 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.svg +1835 -0
- package/docs/fonts/OpenSans-LightItalic-webfont.woff +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.eot +0 -0
- package/docs/fonts/OpenSans-Regular-webfont.svg +1831 -0
- package/docs/fonts/OpenSans-Regular-webfont.woff +0 -0
- package/docs/index.html +7 -5
- package/docs/styles/jsdoc-default.css +95 -75
- package/docs/styles/prettify-tomorrow.css +1 -1
- package/donate.png +0 -0
- package/examples/protoify/json.js +123 -123
- package/examples/protoify/json.json +123 -123
- package/examples/websocket/server.js +4 -4
- package/externs/{ProtoBuf.js → protobuf.js} +933 -922
- package/index.js +1 -18
- package/jsdoc.json +1 -1
- package/package.json +11 -11
- package/protobuf.png +0 -0
- package/scripts/build.js +53 -58
- package/src/ProtoBuf/Builder/Message.js +18 -9
- package/src/ProtoBuf/Builder/Service.js +3 -0
- package/src/ProtoBuf/Builder.js +34 -10
- package/src/ProtoBuf/DotProto/Parser.js +58 -23
- package/src/ProtoBuf/Reflect/Element.js +17 -4
- package/src/ProtoBuf/Reflect/Message/Field.js +6 -5
- package/src/ProtoBuf/Reflect/Message.js +9 -4
- package/src/ProtoBuf/Util.js +116 -116
- package/src/bower.json +2 -2
- package/src/google/protobuf/descriptor.json +55 -15
- package/src/{ProtoBuf.js → protobuf.js} +0 -0
- package/src/wrap.js +4 -4
- package/tests/bench.txt +373 -373
- package/tests/complex.json +8 -1
- package/tests/custom-options.json +169 -169
- package/tests/extend.json +71 -71
- package/tests/imports-weak.proto +7 -0
- package/tests/imports.json +83 -83
- package/tests/nodeunit-browser/nodeunit.css +70 -70
- package/tests/nodeunit-browser/nodeunit.js +2108 -2108
- package/tests/options.json +32 -32
- package/tests/proto2js/Bar.json +46 -46
- package/tests/suite.js +107 -82
- package/ProtoBuf.png +0 -0
- package/dist/ProtoBuf-light.min.js +0 -87
- package/dist/ProtoBuf-light.min.js.gz +0 -0
- package/dist/ProtoBuf-light.min.map +0 -8
- package/dist/ProtoBuf.min.js +0 -108
- package/dist/ProtoBuf.min.js.gz +0 -0
- package/dist/ProtoBuf.min.map +0 -8
- package/externs/ByteBuffer.js +0 -767
- package/externs/Long.js +0 -328
- package/sandbox/gapi/googleapis/google/api/annotations.proto +0 -29
- package/sandbox/gapi/googleapis/google/api/http.proto +0 -245
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/datastore.proto +0 -281
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/entity.proto +0 -189
- package/sandbox/gapi/googleapis/google/datastore/v1beta3/query.proto +0 -281
- package/sandbox/gapi/googleapis/google/longrunning/operations.proto +0 -144
- package/sandbox/gapi/googleapis/google/protobuf/any.proto +0 -98
- package/sandbox/gapi/googleapis/google/protobuf/any_test.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/api.proto +0 -201
- package/sandbox/gapi/googleapis/google/protobuf/descriptor.proto +0 -773
- package/sandbox/gapi/googleapis/google/protobuf/duration.proto +0 -95
- package/sandbox/gapi/googleapis/google/protobuf/empty.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/field_mask.proto +0 -167
- package/sandbox/gapi/googleapis/google/protobuf/map_lite_unittest.proto +0 -130
- package/sandbox/gapi/googleapis/google/protobuf/map_proto2_unittest.proto +0 -60
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest.proto +0 -129
- package/sandbox/gapi/googleapis/google/protobuf/map_unittest_proto3.proto +0 -120
- package/sandbox/gapi/googleapis/google/protobuf/source_context.proto +0 -47
- package/sandbox/gapi/googleapis/google/protobuf/struct.proto +0 -94
- package/sandbox/gapi/googleapis/google/protobuf/timestamp.proto +0 -107
- package/sandbox/gapi/googleapis/google/protobuf/type.proto +0 -176
- package/sandbox/gapi/googleapis/google/protobuf/unittest.proto +0 -878
- package/sandbox/gapi/googleapis/google/protobuf/unittest_arena.proto +0 -46
- package/sandbox/gapi/googleapis/google/protobuf/unittest_custom_options.proto +0 -394
- package/sandbox/gapi/googleapis/google/protobuf/unittest_drop_unknown_fields.proto +0 -58
- package/sandbox/gapi/googleapis/google/protobuf/unittest_embed_optimize_for.proto +0 -51
- package/sandbox/gapi/googleapis/google/protobuf/unittest_empty.proto +0 -38
- package/sandbox/gapi/googleapis/google/protobuf/unittest_enormous_descriptor.proto +0 -1048
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import.proto +0 -66
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_lite.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_proto3.proto +0 -68
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public.proto +0 -41
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_lite.proto +0 -43
- package/sandbox/gapi/googleapis/google/protobuf/unittest_import_public_proto3.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite.proto +0 -385
- package/sandbox/gapi/googleapis/google/protobuf/unittest_lite_imports_nonlite.proto +0 -44
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset.proto +0 -82
- package/sandbox/gapi/googleapis/google/protobuf/unittest_mset_wire_format.proto +0 -52
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena.proto +0 -202
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_import.proto +0 -37
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_arena_lite.proto +0 -42
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_field_presence.proto +0 -138
- package/sandbox/gapi/googleapis/google/protobuf/unittest_no_generic_services.proto +0 -54
- package/sandbox/gapi/googleapis/google/protobuf/unittest_optimize_for.proto +0 -67
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum.proto +0 -71
- package/sandbox/gapi/googleapis/google/protobuf/unittest_preserve_unknown_enum2.proto +0 -50
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3.proto +0 -388
- package/sandbox/gapi/googleapis/google/protobuf/unittest_proto3_arena.proto +0 -206
- package/sandbox/gapi/googleapis/google/protobuf/unittest_well_known_types.proto +0 -112
- package/sandbox/gapi/googleapis/google/protobuf/unknown_enum_test.proto +0 -62
- package/sandbox/gapi/googleapis/google/protobuf/wrappers.proto +0 -117
- package/sandbox/gapi/googleapis/google/rpc/code.proto +0 -190
- package/sandbox/gapi/googleapis/google/rpc/error_details.proto +0 -157
- package/sandbox/gapi/googleapis/google/rpc/status.proto +0 -90
- package/sandbox/gapi/googleapis/google/type/color.proto +0 -163
- package/sandbox/gapi/googleapis/google/type/date.proto +0 -43
- package/sandbox/gapi/googleapis/google/type/dayofweek.proto +0 -50
- package/sandbox/gapi/googleapis/google/type/latlng.proto +0 -36
- package/sandbox/gapi/googleapis/google/type/money.proto +0 -40
- package/sandbox/gapi/googleapis/google/type/timeofday.proto +0 -42
- package/sandbox/gapi/test.js +0 -17
- package/sandbox/gapi/test.proto +0 -12
- package/sandbox/issue146/MyOptions.proto +0 -28
- package/sandbox/issue146/Sample.proto +0 -21
- package/sandbox/issue146/main.js +0 -3
- package/sandbox/issue147/enum.proto +0 -8
- package/sandbox/issue147/main.js +0 -3
- package/sandbox/issue182/commands.proto +0 -10
- package/sandbox/issue182/execute.js +0 -22
- package/sandbox/issue182/session_commands.proto +0 -14
- package/sandbox/issue289/A.proto +0 -8
- package/sandbox/issue289/B.proto +0 -8
- package/sandbox/issue289/common.proto +0 -5
- package/sandbox/issue289/main.js +0 -7
- package/sandbox/issue300/IAuth.proto +0 -14
- package/sandbox/issue300/Request.proto +0 -14
- package/sandbox/issue300/main.js +0 -26
- package/sandbox/issue42/innerextend.proto +0 -18
- package/sandbox/issue42/main.js +0 -8
- package/sandbox/issue42/outerextend.proto +0 -17
- package/tests/gtfs-realtime.proto +0 -552
- package/webpack.config.js +0 -9
|
@@ -23,43 +23,47 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
|
|
26
27
|
<section>
|
|
27
28
|
|
|
28
29
|
<header>
|
|
29
|
-
<h2>
|
|
30
|
-
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
|
|
31
30
|
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
<h2>
|
|
32
|
+
<span class="ancestors"><a href="ProtoBuf.html">ProtoBuf</a><a href="ProtoBuf.Reflect.html">.Reflect</a>.</span>
|
|
33
|
+
|
|
34
|
+
Enum
|
|
35
|
+
</h2>
|
|
36
|
+
|
|
34
37
|
|
|
35
38
|
</header>
|
|
36
39
|
|
|
37
40
|
<article>
|
|
38
41
|
<div class="container-overview">
|
|
39
42
|
|
|
43
|
+
|
|
40
44
|
|
|
41
45
|
|
|
42
|
-
|
|
43
|
-
<dt>
|
|
46
|
+
|
|
44
47
|
<h4 class="name" id="Enum"><span class="type-signature"></span>new Enum<span class="signature">(builder<span class="signature-attributes">non-null</span>, parent<span class="signature-attributes">non-null</span>, name, options<span class="signature-attributes">opt</span>, syntax<span class="signature-attributes">nullable</span>)</span><span class="type-signature"></span></h4>
|
|
45
48
|
|
|
46
49
|
|
|
47
|
-
</dt>
|
|
48
|
-
<dd>
|
|
49
50
|
|
|
50
|
-
|
|
51
|
-
<div class="description">
|
|
52
|
-
<p>Constructs a new Enum.</p>
|
|
53
|
-
</div>
|
|
54
|
-
|
|
55
51
|
|
|
56
|
-
|
|
57
52
|
|
|
58
|
-
|
|
53
|
+
<div class="description">
|
|
54
|
+
<p>Constructs a new Enum.</p>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
59
60
|
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<h5>Parameters:</h5>
|
|
60
66
|
|
|
61
|
-
<h5>Parameters:</h5>
|
|
62
|
-
|
|
63
67
|
|
|
64
68
|
<table class="params">
|
|
65
69
|
<thead>
|
|
@@ -243,10 +247,20 @@
|
|
|
243
247
|
|
|
244
248
|
</tbody>
|
|
245
249
|
</table>
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<dl class="details">
|
|
257
|
+
|
|
246
258
|
|
|
247
259
|
|
|
248
260
|
|
|
249
|
-
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
250
264
|
|
|
251
265
|
|
|
252
266
|
|
|
@@ -268,7 +282,7 @@
|
|
|
268
282
|
|
|
269
283
|
<dt class="tag-source">Source:</dt>
|
|
270
284
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
271
|
-
<a href="
|
|
285
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3831">line 3831</a>
|
|
272
286
|
</li></ul></dd>
|
|
273
287
|
|
|
274
288
|
|
|
@@ -280,20 +294,19 @@
|
|
|
280
294
|
</dl>
|
|
281
295
|
|
|
282
296
|
|
|
283
|
-
|
|
284
297
|
|
|
285
|
-
|
|
286
298
|
|
|
287
|
-
|
|
288
299
|
|
|
289
|
-
|
|
290
300
|
|
|
291
|
-
|
|
292
301
|
|
|
293
|
-
|
|
294
302
|
|
|
295
|
-
|
|
296
|
-
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
297
310
|
|
|
298
311
|
|
|
299
312
|
</div>
|
|
@@ -301,10 +314,13 @@
|
|
|
301
314
|
|
|
302
315
|
<h3 class="subsection-title">Extends</h3>
|
|
303
316
|
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
<ul>
|
|
321
|
+
<li><a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a></li>
|
|
322
|
+
</ul>
|
|
323
|
+
|
|
308
324
|
|
|
309
325
|
|
|
310
326
|
|
|
@@ -326,35 +342,34 @@
|
|
|
326
342
|
|
|
327
343
|
<h3 class="subsection-title">Members</h3>
|
|
328
344
|
|
|
329
|
-
|
|
345
|
+
|
|
330
346
|
|
|
331
|
-
<
|
|
332
|
-
<h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
|
|
347
|
+
<h4 class="name" id="builder"><span class="type-signature">(non-null) </span>builder<span class="type-signature"> :<a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span></h4>
|
|
333
348
|
|
|
334
|
-
|
|
335
|
-
</dt>
|
|
336
|
-
<dd>
|
|
337
|
-
|
|
338
|
-
<div class="description">
|
|
339
|
-
<p>Builder reference.</p>
|
|
340
|
-
</div>
|
|
341
|
-
|
|
342
349
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
<div class="description">
|
|
353
|
+
<p>Builder reference.</p>
|
|
354
|
+
</div>
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
<h5>Type:</h5>
|
|
359
|
+
<ul>
|
|
360
|
+
<li>
|
|
361
|
+
|
|
348
362
|
<span class="param-type"><a href="ProtoBuf.Builder.html">ProtoBuf.Builder</a></span>
|
|
349
363
|
|
|
350
364
|
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
365
|
+
</li>
|
|
366
|
+
</ul>
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
354
371
|
|
|
355
|
-
|
|
356
372
|
<dl class="details">
|
|
357
|
-
|
|
358
373
|
|
|
359
374
|
|
|
360
375
|
|
|
@@ -364,7 +379,15 @@
|
|
|
364
379
|
<dt class="inherited-from">Inherited From:</dt>
|
|
365
380
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
366
381
|
<a href="ProtoBuf.Reflect.T.html#builder">ProtoBuf.Reflect.T#builder</a>
|
|
367
|
-
</li></dd>
|
|
382
|
+
</li></ul></dd>
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
|
|
368
391
|
|
|
369
392
|
|
|
370
393
|
|
|
@@ -380,7 +403,7 @@
|
|
|
380
403
|
|
|
381
404
|
<dt class="tag-source">Source:</dt>
|
|
382
405
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
383
|
-
<a href="
|
|
406
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1417">line 1417</a>
|
|
384
407
|
</li></ul></dd>
|
|
385
408
|
|
|
386
409
|
|
|
@@ -392,40 +415,38 @@
|
|
|
392
415
|
</dl>
|
|
393
416
|
|
|
394
417
|
|
|
395
|
-
|
|
396
418
|
|
|
397
|
-
|
|
398
|
-
|
|
419
|
+
|
|
420
|
+
|
|
399
421
|
|
|
400
422
|
|
|
401
423
|
|
|
402
|
-
<
|
|
403
|
-
<h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
|
|
424
|
+
<h4 class="name" id="children"><span class="type-signature">(non-null) </span>children<span class="type-signature"> :Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span></h4>
|
|
404
425
|
|
|
405
|
-
|
|
406
|
-
</dt>
|
|
407
|
-
<dd>
|
|
408
|
-
|
|
409
|
-
<div class="description">
|
|
410
|
-
<p>Children inside the namespace.</p>
|
|
411
|
-
</div>
|
|
412
|
-
|
|
413
426
|
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
<div class="description">
|
|
430
|
+
<p>Children inside the namespace.</p>
|
|
431
|
+
</div>
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
<h5>Type:</h5>
|
|
436
|
+
<ul>
|
|
437
|
+
<li>
|
|
438
|
+
|
|
419
439
|
<span class="param-type">Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>></span>
|
|
420
440
|
|
|
421
441
|
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
442
|
+
</li>
|
|
443
|
+
</ul>
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
425
448
|
|
|
426
|
-
|
|
427
449
|
<dl class="details">
|
|
428
|
-
|
|
429
450
|
|
|
430
451
|
|
|
431
452
|
|
|
@@ -435,7 +456,15 @@
|
|
|
435
456
|
<dt class="inherited-from">Inherited From:</dt>
|
|
436
457
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
437
458
|
<a href="ProtoBuf.Reflect.Namespace.html#children">ProtoBuf.Reflect.Namespace#children</a>
|
|
438
|
-
</li></dd>
|
|
459
|
+
</li></ul></dd>
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
|
|
439
468
|
|
|
440
469
|
|
|
441
470
|
|
|
@@ -451,7 +480,7 @@
|
|
|
451
480
|
|
|
452
481
|
<dt class="tag-source">Source:</dt>
|
|
453
482
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
454
|
-
<a href="
|
|
483
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1512">line 1512</a>
|
|
455
484
|
</li></ul></dd>
|
|
456
485
|
|
|
457
486
|
|
|
@@ -463,25 +492,50 @@
|
|
|
463
492
|
</dl>
|
|
464
493
|
|
|
465
494
|
|
|
466
|
-
|
|
467
495
|
|
|
468
|
-
|
|
469
|
-
|
|
496
|
+
|
|
497
|
+
|
|
470
498
|
|
|
471
499
|
|
|
472
500
|
|
|
473
|
-
<
|
|
474
|
-
|
|
501
|
+
<h4 class="name" id="className"><span class="type-signature"></span>className<span class="type-signature"> :string</span></h4>
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
<div class="description">
|
|
507
|
+
<p>Fully qualified class name</p>
|
|
508
|
+
</div>
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
<h5>Type:</h5>
|
|
513
|
+
<ul>
|
|
514
|
+
<li>
|
|
515
|
+
|
|
516
|
+
<span class="param-type">string</span>
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
</li>
|
|
520
|
+
</ul>
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
<dl class="details">
|
|
475
527
|
|
|
476
528
|
|
|
477
|
-
|
|
478
|
-
<dd>
|
|
529
|
+
|
|
479
530
|
|
|
480
531
|
|
|
481
532
|
|
|
482
533
|
|
|
483
534
|
|
|
484
|
-
<
|
|
535
|
+
<dt class="tag-overrides">Overrides:</dt>
|
|
536
|
+
<dd class="tag-overrides"><ul class="dummy"><li>
|
|
537
|
+
<a href="ProtoBuf.Reflect.Namespace.html#className">ProtoBuf.Reflect.Namespace#className</a>
|
|
538
|
+
</li></ul></dd>
|
|
485
539
|
|
|
486
540
|
|
|
487
541
|
|
|
@@ -503,7 +557,7 @@
|
|
|
503
557
|
|
|
504
558
|
<dt class="tag-source">Source:</dt>
|
|
505
559
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
506
|
-
<a href="
|
|
560
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1438">line 1438</a>
|
|
507
561
|
</li></ul></dd>
|
|
508
562
|
|
|
509
563
|
|
|
@@ -515,40 +569,38 @@
|
|
|
515
569
|
</dl>
|
|
516
570
|
|
|
517
571
|
|
|
518
|
-
|
|
519
572
|
|
|
520
|
-
|
|
521
|
-
|
|
573
|
+
|
|
574
|
+
|
|
522
575
|
|
|
523
576
|
|
|
524
577
|
|
|
525
|
-
<
|
|
526
|
-
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
578
|
+
<h4 class="name" id="name"><span class="type-signature"></span>name<span class="type-signature"> :string</span></h4>
|
|
527
579
|
|
|
528
|
-
|
|
529
|
-
</dt>
|
|
530
|
-
<dd>
|
|
531
|
-
|
|
532
|
-
<div class="description">
|
|
533
|
-
<p>Object name in namespace.</p>
|
|
534
|
-
</div>
|
|
535
|
-
|
|
536
580
|
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
<div class="description">
|
|
584
|
+
<p>Object name in namespace.</p>
|
|
585
|
+
</div>
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
<h5>Type:</h5>
|
|
590
|
+
<ul>
|
|
591
|
+
<li>
|
|
592
|
+
|
|
542
593
|
<span class="param-type">string</span>
|
|
543
594
|
|
|
544
595
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
596
|
+
</li>
|
|
597
|
+
</ul>
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
|
|
548
602
|
|
|
549
|
-
|
|
550
603
|
<dl class="details">
|
|
551
|
-
|
|
552
604
|
|
|
553
605
|
|
|
554
606
|
|
|
@@ -558,7 +610,15 @@
|
|
|
558
610
|
<dt class="inherited-from">Inherited From:</dt>
|
|
559
611
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
560
612
|
<a href="ProtoBuf.Reflect.T.html#name">ProtoBuf.Reflect.T#name</a>
|
|
561
|
-
</li></dd>
|
|
613
|
+
</li></ul></dd>
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
|
|
562
622
|
|
|
563
623
|
|
|
564
624
|
|
|
@@ -574,7 +634,7 @@
|
|
|
574
634
|
|
|
575
635
|
<dt class="tag-source">Source:</dt>
|
|
576
636
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
577
|
-
<a href="
|
|
637
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1431">line 1431</a>
|
|
578
638
|
</li></ul></dd>
|
|
579
639
|
|
|
580
640
|
|
|
@@ -586,42 +646,48 @@
|
|
|
586
646
|
</dl>
|
|
587
647
|
|
|
588
648
|
|
|
589
|
-
|
|
590
649
|
|
|
591
|
-
|
|
592
|
-
|
|
650
|
+
|
|
651
|
+
|
|
593
652
|
|
|
594
653
|
|
|
595
654
|
|
|
596
|
-
<
|
|
597
|
-
<h4 class="name" id="object"><span class="type-signature"></span>object<span class="type-signature"> :Object.<string, number>|null</span></h4>
|
|
655
|
+
<h4 class="name" id="object"><span class="type-signature"></span>object<span class="type-signature"> :Object.<string, number>|null</span></h4>
|
|
598
656
|
|
|
599
|
-
|
|
600
|
-
</dt>
|
|
601
|
-
<dd>
|
|
602
|
-
|
|
603
|
-
<div class="description">
|
|
604
|
-
<p>Runtime enum object.</p>
|
|
605
|
-
</div>
|
|
606
|
-
|
|
607
657
|
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
<div class="description">
|
|
661
|
+
<p>Runtime enum object.</p>
|
|
662
|
+
</div>
|
|
663
|
+
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
<h5>Type:</h5>
|
|
667
|
+
<ul>
|
|
668
|
+
<li>
|
|
669
|
+
|
|
613
670
|
<span class="param-type">Object.<string, number></span>
|
|
614
671
|
|
|
|
615
672
|
|
|
616
673
|
<span class="param-type">null</span>
|
|
617
674
|
|
|
618
675
|
|
|
619
|
-
|
|
620
|
-
|
|
676
|
+
</li>
|
|
677
|
+
</ul>
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
<dl class="details">
|
|
684
|
+
|
|
621
685
|
|
|
622
686
|
|
|
623
687
|
|
|
624
|
-
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
625
691
|
|
|
626
692
|
|
|
627
693
|
|
|
@@ -643,7 +709,7 @@
|
|
|
643
709
|
|
|
644
710
|
<dt class="tag-source">Source:</dt>
|
|
645
711
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
646
|
-
<a href="
|
|
712
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3844">line 3844</a>
|
|
647
713
|
</li></ul></dd>
|
|
648
714
|
|
|
649
715
|
|
|
@@ -655,40 +721,38 @@
|
|
|
655
721
|
</dl>
|
|
656
722
|
|
|
657
723
|
|
|
658
|
-
|
|
659
724
|
|
|
660
|
-
|
|
661
|
-
|
|
725
|
+
|
|
726
|
+
|
|
662
727
|
|
|
663
728
|
|
|
664
729
|
|
|
665
|
-
<
|
|
666
|
-
<h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.<string, *></span></h4>
|
|
730
|
+
<h4 class="name" id="options"><span class="type-signature">(non-null) </span>options<span class="type-signature"> :Object.<string, *></span></h4>
|
|
667
731
|
|
|
668
|
-
|
|
669
|
-
</dt>
|
|
670
|
-
<dd>
|
|
671
|
-
|
|
672
|
-
<div class="description">
|
|
673
|
-
<p>Options.</p>
|
|
674
|
-
</div>
|
|
675
|
-
|
|
676
732
|
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
<div class="description">
|
|
736
|
+
<p>Options.</p>
|
|
737
|
+
</div>
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
<h5>Type:</h5>
|
|
742
|
+
<ul>
|
|
743
|
+
<li>
|
|
744
|
+
|
|
682
745
|
<span class="param-type">Object.<string, *></span>
|
|
683
746
|
|
|
684
747
|
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
748
|
+
</li>
|
|
749
|
+
</ul>
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
688
754
|
|
|
689
|
-
|
|
690
755
|
<dl class="details">
|
|
691
|
-
|
|
692
756
|
|
|
693
757
|
|
|
694
758
|
|
|
@@ -698,7 +762,15 @@
|
|
|
698
762
|
<dt class="inherited-from">Inherited From:</dt>
|
|
699
763
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
700
764
|
<a href="ProtoBuf.Reflect.Namespace.html#options">ProtoBuf.Reflect.Namespace#options</a>
|
|
701
|
-
</li></dd>
|
|
765
|
+
</li></ul></dd>
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
|
|
702
774
|
|
|
703
775
|
|
|
704
776
|
|
|
@@ -714,7 +786,7 @@
|
|
|
714
786
|
|
|
715
787
|
<dt class="tag-source">Source:</dt>
|
|
716
788
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
717
|
-
<a href="
|
|
789
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1518">line 1518</a>
|
|
718
790
|
</li></ul></dd>
|
|
719
791
|
|
|
720
792
|
|
|
@@ -726,50 +798,56 @@
|
|
|
726
798
|
</dl>
|
|
727
799
|
|
|
728
800
|
|
|
729
|
-
|
|
730
801
|
|
|
731
|
-
|
|
732
|
-
|
|
802
|
+
|
|
803
|
+
|
|
733
804
|
|
|
734
805
|
|
|
735
806
|
|
|
736
|
-
<
|
|
737
|
-
<h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
|
|
807
|
+
<h4 class="name" id="parent"><span class="type-signature">(nullable) </span>parent<span class="type-signature"> :<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span></h4>
|
|
738
808
|
|
|
739
|
-
|
|
740
|
-
</dt>
|
|
741
|
-
<dd>
|
|
742
|
-
|
|
743
|
-
<div class="description">
|
|
744
|
-
<p>Parent object.</p>
|
|
745
|
-
</div>
|
|
746
|
-
|
|
747
809
|
|
|
748
|
-
|
|
749
|
-
<h5>Type:</h5>
|
|
750
|
-
<ul>
|
|
751
|
-
<li>
|
|
752
|
-
|
|
753
|
-
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
754
810
|
|
|
755
811
|
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
812
|
+
<div class="description">
|
|
813
|
+
<p>Parent object.</p>
|
|
814
|
+
</div>
|
|
759
815
|
|
|
760
|
-
|
|
761
|
-
<dl class="details">
|
|
762
|
-
|
|
763
816
|
|
|
764
|
-
|
|
765
817
|
|
|
766
|
-
|
|
818
|
+
<h5>Type:</h5>
|
|
819
|
+
<ul>
|
|
820
|
+
<li>
|
|
821
|
+
|
|
822
|
+
<span class="param-type"><a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a></span>
|
|
767
823
|
|
|
768
|
-
|
|
824
|
+
|
|
825
|
+
</li>
|
|
826
|
+
</ul>
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
<dl class="details">
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
|
|
769
839
|
<dt class="inherited-from">Inherited From:</dt>
|
|
770
840
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
771
841
|
<a href="ProtoBuf.Reflect.T.html#parent">ProtoBuf.Reflect.T#parent</a>
|
|
772
|
-
</li></dd>
|
|
842
|
+
</li></ul></dd>
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
|
|
773
851
|
|
|
774
852
|
|
|
775
853
|
|
|
@@ -785,7 +863,7 @@
|
|
|
785
863
|
|
|
786
864
|
<dt class="tag-source">Source:</dt>
|
|
787
865
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
788
|
-
<a href="
|
|
866
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1424">line 1424</a>
|
|
789
867
|
</li></ul></dd>
|
|
790
868
|
|
|
791
869
|
|
|
@@ -797,40 +875,38 @@
|
|
|
797
875
|
</dl>
|
|
798
876
|
|
|
799
877
|
|
|
800
|
-
|
|
801
878
|
|
|
802
|
-
|
|
803
|
-
|
|
879
|
+
|
|
880
|
+
|
|
804
881
|
|
|
805
882
|
|
|
806
883
|
|
|
807
|
-
<
|
|
808
|
-
<h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
|
|
884
|
+
<h4 class="name" id="syntax"><span class="type-signature">(non-null) </span>syntax<span class="type-signature"> :string</span></h4>
|
|
809
885
|
|
|
810
|
-
|
|
811
|
-
</dt>
|
|
812
|
-
<dd>
|
|
813
|
-
|
|
814
|
-
<div class="description">
|
|
815
|
-
<p>Syntax level (e.g., proto2 or proto3).</p>
|
|
816
|
-
</div>
|
|
817
|
-
|
|
818
886
|
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
<div class="description">
|
|
890
|
+
<p>Syntax level (e.g., proto2 or proto3).</p>
|
|
891
|
+
</div>
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
|
|
895
|
+
<h5>Type:</h5>
|
|
896
|
+
<ul>
|
|
897
|
+
<li>
|
|
898
|
+
|
|
824
899
|
<span class="param-type">string</span>
|
|
825
900
|
|
|
826
901
|
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
902
|
+
</li>
|
|
903
|
+
</ul>
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
|
|
830
908
|
|
|
831
|
-
|
|
832
909
|
<dl class="details">
|
|
833
|
-
|
|
834
910
|
|
|
835
911
|
|
|
836
912
|
|
|
@@ -840,7 +916,15 @@
|
|
|
840
916
|
<dt class="inherited-from">Inherited From:</dt>
|
|
841
917
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
842
918
|
<a href="ProtoBuf.Reflect.Namespace.html#syntax">ProtoBuf.Reflect.Namespace#syntax</a>
|
|
843
|
-
</li></dd>
|
|
919
|
+
</li></ul></dd>
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
|
|
844
928
|
|
|
845
929
|
|
|
846
930
|
|
|
@@ -856,7 +940,7 @@
|
|
|
856
940
|
|
|
857
941
|
<dt class="tag-source">Source:</dt>
|
|
858
942
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
859
|
-
<a href="
|
|
943
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1524">line 1524</a>
|
|
860
944
|
</li></ul></dd>
|
|
861
945
|
|
|
862
946
|
|
|
@@ -868,39 +952,41 @@
|
|
|
868
952
|
</dl>
|
|
869
953
|
|
|
870
954
|
|
|
871
|
-
|
|
872
955
|
|
|
873
|
-
|
|
874
|
-
</dd>
|
|
875
956
|
|
|
876
|
-
|
|
957
|
+
|
|
958
|
+
|
|
959
|
+
|
|
877
960
|
|
|
878
961
|
|
|
879
962
|
|
|
880
963
|
<h3 class="subsection-title">Methods</h3>
|
|
881
964
|
|
|
882
|
-
|
|
965
|
+
|
|
883
966
|
|
|
884
|
-
<dt>
|
|
885
|
-
<h4 class="name" id="getName"><span class="type-signature">(static) </span>getName<span class="signature">(enm<span class="signature-attributes">non-null</span>, value)</span><span class="type-signature"> → (nullable) {string}</span></h4>
|
|
886
967
|
|
|
887
968
|
|
|
888
|
-
</dt>
|
|
889
|
-
<dd>
|
|
890
969
|
|
|
891
|
-
|
|
892
|
-
<div class="description">
|
|
893
|
-
<p>Gets the string name of an enum value.</p>
|
|
894
|
-
</div>
|
|
895
|
-
|
|
970
|
+
<h4 class="name" id=".getName"><span class="type-signature">(static) </span>getName<span class="signature">(enm<span class="signature-attributes">non-null</span>, value)</span><span class="type-signature"> → (nullable) {string}</span></h4>
|
|
896
971
|
|
|
897
972
|
|
|
898
973
|
|
|
899
|
-
|
|
900
974
|
|
|
975
|
+
|
|
976
|
+
<div class="description">
|
|
977
|
+
<p>Gets the string name of an enum value.</p>
|
|
978
|
+
</div>
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
<h5>Parameters:</h5>
|
|
901
989
|
|
|
902
|
-
<h5>Parameters:</h5>
|
|
903
|
-
|
|
904
990
|
|
|
905
991
|
<table class="params">
|
|
906
992
|
<thead>
|
|
@@ -969,10 +1055,20 @@
|
|
|
969
1055
|
|
|
970
1056
|
</tbody>
|
|
971
1057
|
</table>
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
|
|
1064
|
+
<dl class="details">
|
|
1065
|
+
|
|
972
1066
|
|
|
973
1067
|
|
|
974
1068
|
|
|
975
|
-
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
|
|
976
1072
|
|
|
977
1073
|
|
|
978
1074
|
|
|
@@ -994,7 +1090,7 @@
|
|
|
994
1090
|
|
|
995
1091
|
<dt class="tag-source">Source:</dt>
|
|
996
1092
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
997
|
-
<a href="
|
|
1093
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3854">line 3854</a>
|
|
998
1094
|
</li></ul></dd>
|
|
999
1095
|
|
|
1000
1096
|
|
|
@@ -1006,20 +1102,20 @@
|
|
|
1006
1102
|
</dl>
|
|
1007
1103
|
|
|
1008
1104
|
|
|
1009
|
-
|
|
1010
1105
|
|
|
1011
|
-
|
|
1012
1106
|
|
|
1013
|
-
|
|
1014
1107
|
|
|
1015
|
-
|
|
1016
1108
|
|
|
1017
|
-
|
|
1018
1109
|
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1110
|
+
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
<h5>Returns:</h5>
|
|
1117
|
+
|
|
1118
|
+
|
|
1023
1119
|
<div class="param-desc">
|
|
1024
1120
|
<p>Name or <code>null</code> if not present</p>
|
|
1025
1121
|
</div>
|
|
@@ -1038,33 +1134,35 @@
|
|
|
1038
1134
|
</dd>
|
|
1039
1135
|
</dl>
|
|
1040
1136
|
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
1137
|
|
|
1044
|
-
|
|
1138
|
+
|
|
1139
|
+
|
|
1045
1140
|
|
|
1046
1141
|
|
|
1047
1142
|
|
|
1048
|
-
<dt>
|
|
1049
|
-
<h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
|
|
1050
1143
|
|
|
1051
1144
|
|
|
1052
|
-
</dt>
|
|
1053
|
-
<dd>
|
|
1054
1145
|
|
|
1055
|
-
|
|
1056
|
-
<div class="description">
|
|
1057
|
-
<p>Adds a child to the namespace.</p>
|
|
1058
|
-
</div>
|
|
1059
|
-
|
|
1146
|
+
<h4 class="name" id="addChild"><span class="type-signature"></span>addChild<span class="signature">(child)</span><span class="type-signature"></span></h4>
|
|
1060
1147
|
|
|
1061
1148
|
|
|
1062
1149
|
|
|
1063
|
-
|
|
1064
1150
|
|
|
1151
|
+
|
|
1152
|
+
<div class="description">
|
|
1153
|
+
<p>Adds a child to the namespace.</p>
|
|
1154
|
+
</div>
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
|
|
1164
|
+
<h5>Parameters:</h5>
|
|
1065
1165
|
|
|
1066
|
-
<h5>Parameters:</h5>
|
|
1067
|
-
|
|
1068
1166
|
|
|
1069
1167
|
<table class="params">
|
|
1070
1168
|
<thead>
|
|
@@ -1110,11 +1208,13 @@
|
|
|
1110
1208
|
|
|
1111
1209
|
</tbody>
|
|
1112
1210
|
</table>
|
|
1113
|
-
|
|
1114
1211
|
|
|
1115
|
-
|
|
1212
|
+
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
|
|
1216
|
+
|
|
1116
1217
|
<dl class="details">
|
|
1117
|
-
|
|
1118
1218
|
|
|
1119
1219
|
|
|
1120
1220
|
|
|
@@ -1124,7 +1224,15 @@
|
|
|
1124
1224
|
<dt class="inherited-from">Inherited From:</dt>
|
|
1125
1225
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1126
1226
|
<a href="ProtoBuf.Reflect.Namespace.html#addChild">ProtoBuf.Reflect.Namespace#addChild</a>
|
|
1127
|
-
</li></dd>
|
|
1227
|
+
</li></ul></dd>
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
|
|
1233
|
+
|
|
1234
|
+
|
|
1235
|
+
|
|
1128
1236
|
|
|
1129
1237
|
|
|
1130
1238
|
|
|
@@ -1140,7 +1248,7 @@
|
|
|
1140
1248
|
|
|
1141
1249
|
<dt class="tag-source">Source:</dt>
|
|
1142
1250
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1143
|
-
<a href="
|
|
1251
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1556">line 1556</a>
|
|
1144
1252
|
</li></ul></dd>
|
|
1145
1253
|
|
|
1146
1254
|
|
|
@@ -1152,25 +1260,26 @@
|
|
|
1152
1260
|
</dl>
|
|
1153
1261
|
|
|
1154
1262
|
|
|
1155
|
-
|
|
1156
1263
|
|
|
1157
|
-
|
|
1158
1264
|
|
|
1159
|
-
|
|
1160
1265
|
|
|
1161
|
-
|
|
1162
1266
|
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
<h5>Throws:</h5>
|
|
1273
|
+
|
|
1274
|
+
|
|
1167
1275
|
|
|
1168
1276
|
<dl>
|
|
1169
1277
|
<dt>
|
|
1170
1278
|
<div class="param-desc">
|
|
1171
|
-
If the child cannot be added (duplicate)
|
|
1279
|
+
<p>If the child cannot be added (duplicate)</p>
|
|
1172
1280
|
</div>
|
|
1173
1281
|
</dt>
|
|
1282
|
+
<dd></dd>
|
|
1174
1283
|
<dt>
|
|
1175
1284
|
<dl>
|
|
1176
1285
|
<dt>
|
|
@@ -1184,38 +1293,41 @@
|
|
|
1184
1293
|
</dd>
|
|
1185
1294
|
</dl>
|
|
1186
1295
|
</dt>
|
|
1296
|
+
<dd></dd>
|
|
1187
1297
|
</dl>
|
|
1188
1298
|
|
|
1189
1299
|
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
1300
|
|
|
1193
1301
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1302
|
+
|
|
1303
|
+
|
|
1304
|
+
|
|
1196
1305
|
|
|
1197
1306
|
|
|
1198
1307
|
|
|
1199
|
-
<dt>
|
|
1200
|
-
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild)</span><span class="type-signature"> → (non-null) {Object.<string, number>}</span></h4>
|
|
1201
1308
|
|
|
1202
1309
|
|
|
1203
|
-
</dt>
|
|
1204
|
-
<dd>
|
|
1205
1310
|
|
|
1206
|
-
|
|
1207
|
-
<div class="description">
|
|
1208
|
-
<p>Builds this enum and returns the runtime counterpart.</p>
|
|
1209
|
-
</div>
|
|
1210
|
-
|
|
1311
|
+
<h4 class="name" id="build"><span class="type-signature"></span>build<span class="signature">(rebuild)</span><span class="type-signature"> → (non-null) {Object.<string, number>}</span></h4>
|
|
1211
1312
|
|
|
1212
1313
|
|
|
1213
1314
|
|
|
1214
|
-
|
|
1215
1315
|
|
|
1316
|
+
|
|
1317
|
+
<div class="description">
|
|
1318
|
+
<p>Builds this enum and returns the runtime counterpart.</p>
|
|
1319
|
+
</div>
|
|
1320
|
+
|
|
1321
|
+
|
|
1322
|
+
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
|
|
1328
|
+
|
|
1329
|
+
<h5>Parameters:</h5>
|
|
1216
1330
|
|
|
1217
|
-
<h5>Parameters:</h5>
|
|
1218
|
-
|
|
1219
1331
|
|
|
1220
1332
|
<table class="params">
|
|
1221
1333
|
<thead>
|
|
@@ -1261,10 +1373,25 @@
|
|
|
1261
1373
|
|
|
1262
1374
|
</tbody>
|
|
1263
1375
|
</table>
|
|
1376
|
+
|
|
1377
|
+
|
|
1378
|
+
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
<dl class="details">
|
|
1383
|
+
|
|
1264
1384
|
|
|
1265
1385
|
|
|
1266
1386
|
|
|
1267
|
-
|
|
1387
|
+
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
<dt class="tag-overrides">Overrides:</dt>
|
|
1392
|
+
<dd class="tag-overrides"><ul class="dummy"><li>
|
|
1393
|
+
<a href="ProtoBuf.Reflect.Namespace.html#build">ProtoBuf.Reflect.Namespace#build</a>
|
|
1394
|
+
</li></ul></dd>
|
|
1268
1395
|
|
|
1269
1396
|
|
|
1270
1397
|
|
|
@@ -1286,7 +1413,7 @@
|
|
|
1286
1413
|
|
|
1287
1414
|
<dt class="tag-source">Source:</dt>
|
|
1288
1415
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1289
|
-
<a href="
|
|
1416
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line3874">line 3874</a>
|
|
1290
1417
|
</li></ul></dd>
|
|
1291
1418
|
|
|
1292
1419
|
|
|
@@ -1298,20 +1425,20 @@
|
|
|
1298
1425
|
</dl>
|
|
1299
1426
|
|
|
1300
1427
|
|
|
1301
|
-
|
|
1302
1428
|
|
|
1303
|
-
|
|
1304
1429
|
|
|
1305
|
-
|
|
1306
1430
|
|
|
1307
|
-
|
|
1308
1431
|
|
|
1309
|
-
|
|
1310
1432
|
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
|
|
1437
|
+
|
|
1438
|
+
|
|
1439
|
+
<h5>Returns:</h5>
|
|
1440
|
+
|
|
1441
|
+
|
|
1315
1442
|
|
|
1316
1443
|
|
|
1317
1444
|
<dl>
|
|
@@ -1326,35 +1453,38 @@
|
|
|
1326
1453
|
</dd>
|
|
1327
1454
|
</dl>
|
|
1328
1455
|
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
1456
|
|
|
1332
|
-
|
|
1457
|
+
|
|
1458
|
+
|
|
1333
1459
|
|
|
1334
1460
|
|
|
1335
1461
|
|
|
1336
|
-
<dt>
|
|
1337
|
-
<h4 class="name" id="buildOpt"><span class="type-signature"></span>buildOpt<span class="signature">()</span><span class="type-signature"> → {Object.<string, *>}</span></h4>
|
|
1338
1462
|
|
|
1339
1463
|
|
|
1340
|
-
</dt>
|
|
1341
|
-
<dd>
|
|
1342
1464
|
|
|
1343
|
-
|
|
1344
|
-
<div class="description">
|
|
1345
|
-
<p>Builds the namespace's '$options' property.</p>
|
|
1346
|
-
</div>
|
|
1347
|
-
|
|
1465
|
+
<h4 class="name" id="buildOpt"><span class="type-signature"></span>buildOpt<span class="signature">()</span><span class="type-signature"> → {Object.<string, *>}</span></h4>
|
|
1348
1466
|
|
|
1349
1467
|
|
|
1350
1468
|
|
|
1351
|
-
|
|
1352
1469
|
|
|
1353
|
-
|
|
1354
1470
|
|
|
1355
|
-
|
|
1471
|
+
<div class="description">
|
|
1472
|
+
<p>Builds the namespace's '$options' property.</p>
|
|
1473
|
+
</div>
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
|
|
1484
|
+
|
|
1485
|
+
|
|
1486
|
+
|
|
1356
1487
|
<dl class="details">
|
|
1357
|
-
|
|
1358
1488
|
|
|
1359
1489
|
|
|
1360
1490
|
|
|
@@ -1364,7 +1494,15 @@
|
|
|
1364
1494
|
<dt class="inherited-from">Inherited From:</dt>
|
|
1365
1495
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1366
1496
|
<a href="ProtoBuf.Reflect.Namespace.html#buildOpt">ProtoBuf.Reflect.Namespace#buildOpt</a>
|
|
1367
|
-
</li></dd>
|
|
1497
|
+
</li></ul></dd>
|
|
1498
|
+
|
|
1499
|
+
|
|
1500
|
+
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
|
|
1504
|
+
|
|
1505
|
+
|
|
1368
1506
|
|
|
1369
1507
|
|
|
1370
1508
|
|
|
@@ -1380,7 +1518,7 @@
|
|
|
1380
1518
|
|
|
1381
1519
|
<dt class="tag-source">Source:</dt>
|
|
1382
1520
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1383
|
-
<a href="
|
|
1521
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1666">line 1666</a>
|
|
1384
1522
|
</li></ul></dd>
|
|
1385
1523
|
|
|
1386
1524
|
|
|
@@ -1392,20 +1530,20 @@
|
|
|
1392
1530
|
</dl>
|
|
1393
1531
|
|
|
1394
1532
|
|
|
1395
|
-
|
|
1396
1533
|
|
|
1397
|
-
|
|
1398
1534
|
|
|
1399
|
-
|
|
1400
1535
|
|
|
1401
|
-
|
|
1402
1536
|
|
|
1403
|
-
|
|
1404
1537
|
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
|
|
1541
|
+
|
|
1542
|
+
|
|
1543
|
+
|
|
1544
|
+
<h5>Returns:</h5>
|
|
1545
|
+
|
|
1546
|
+
|
|
1409
1547
|
|
|
1410
1548
|
|
|
1411
1549
|
<dl>
|
|
@@ -1420,35 +1558,38 @@
|
|
|
1420
1558
|
</dd>
|
|
1421
1559
|
</dl>
|
|
1422
1560
|
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
1561
|
|
|
1426
|
-
|
|
1562
|
+
|
|
1563
|
+
|
|
1427
1564
|
|
|
1428
1565
|
|
|
1429
1566
|
|
|
1430
|
-
<dt>
|
|
1431
|
-
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1432
1567
|
|
|
1433
1568
|
|
|
1434
|
-
</dt>
|
|
1435
|
-
<dd>
|
|
1436
1569
|
|
|
1437
|
-
|
|
1438
|
-
<div class="description">
|
|
1439
|
-
<p>Returns the fully qualified name of this object.</p>
|
|
1440
|
-
</div>
|
|
1441
|
-
|
|
1570
|
+
<h4 class="name" id="fqn"><span class="type-signature"></span>fqn<span class="signature">()</span><span class="type-signature"> → {string}</span></h4>
|
|
1442
1571
|
|
|
1443
1572
|
|
|
1444
1573
|
|
|
1445
|
-
|
|
1446
1574
|
|
|
1447
|
-
|
|
1448
1575
|
|
|
1449
|
-
|
|
1576
|
+
<div class="description">
|
|
1577
|
+
<p>Returns the fully qualified name of this object.</p>
|
|
1578
|
+
</div>
|
|
1579
|
+
|
|
1580
|
+
|
|
1581
|
+
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
|
|
1587
|
+
|
|
1588
|
+
|
|
1589
|
+
|
|
1590
|
+
|
|
1591
|
+
|
|
1450
1592
|
<dl class="details">
|
|
1451
|
-
|
|
1452
1593
|
|
|
1453
1594
|
|
|
1454
1595
|
|
|
@@ -1458,7 +1599,15 @@
|
|
|
1458
1599
|
<dt class="inherited-from">Inherited From:</dt>
|
|
1459
1600
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1460
1601
|
<a href="ProtoBuf.Reflect.T.html#fqn">ProtoBuf.Reflect.T#fqn</a>
|
|
1461
|
-
</li></dd>
|
|
1602
|
+
</li></ul></dd>
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
|
|
1462
1611
|
|
|
1463
1612
|
|
|
1464
1613
|
|
|
@@ -1474,7 +1623,7 @@
|
|
|
1474
1623
|
|
|
1475
1624
|
<dt class="tag-source">Source:</dt>
|
|
1476
1625
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1477
|
-
<a href="
|
|
1626
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1452">line 1452</a>
|
|
1478
1627
|
</li></ul></dd>
|
|
1479
1628
|
|
|
1480
1629
|
|
|
@@ -1486,20 +1635,20 @@
|
|
|
1486
1635
|
</dl>
|
|
1487
1636
|
|
|
1488
1637
|
|
|
1489
|
-
|
|
1490
1638
|
|
|
1491
|
-
|
|
1492
1639
|
|
|
1493
|
-
|
|
1494
1640
|
|
|
1495
|
-
|
|
1496
1641
|
|
|
1497
|
-
|
|
1498
1642
|
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1643
|
+
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
<h5>Returns:</h5>
|
|
1650
|
+
|
|
1651
|
+
|
|
1503
1652
|
<div class="param-desc">
|
|
1504
1653
|
<p>Fully qualified name as of ".PATH.TO.THIS"</p>
|
|
1505
1654
|
</div>
|
|
@@ -1518,33 +1667,35 @@
|
|
|
1518
1667
|
</dd>
|
|
1519
1668
|
</dl>
|
|
1520
1669
|
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
1670
|
|
|
1524
|
-
|
|
1671
|
+
|
|
1672
|
+
|
|
1525
1673
|
|
|
1526
1674
|
|
|
1527
1675
|
|
|
1528
|
-
<dt>
|
|
1529
|
-
<h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
|
|
1530
1676
|
|
|
1531
1677
|
|
|
1532
|
-
</dt>
|
|
1533
|
-
<dd>
|
|
1534
1678
|
|
|
1535
|
-
|
|
1536
|
-
<div class="description">
|
|
1537
|
-
<p>Gets a child by its name or id.</p>
|
|
1538
|
-
</div>
|
|
1539
|
-
|
|
1679
|
+
<h4 class="name" id="getChild"><span class="type-signature"></span>getChild<span class="signature">(nameOrId)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>}</span></h4>
|
|
1540
1680
|
|
|
1541
1681
|
|
|
1542
1682
|
|
|
1543
|
-
|
|
1544
1683
|
|
|
1684
|
+
|
|
1685
|
+
<div class="description">
|
|
1686
|
+
<p>Gets a child by its name or id.</p>
|
|
1687
|
+
</div>
|
|
1688
|
+
|
|
1689
|
+
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
|
|
1695
|
+
|
|
1696
|
+
|
|
1697
|
+
<h5>Parameters:</h5>
|
|
1545
1698
|
|
|
1546
|
-
<h5>Parameters:</h5>
|
|
1547
|
-
|
|
1548
1699
|
|
|
1549
1700
|
<table class="params">
|
|
1550
1701
|
<thead>
|
|
@@ -1593,11 +1744,13 @@
|
|
|
1593
1744
|
|
|
1594
1745
|
</tbody>
|
|
1595
1746
|
</table>
|
|
1596
|
-
|
|
1597
1747
|
|
|
1598
|
-
|
|
1748
|
+
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
|
|
1752
|
+
|
|
1599
1753
|
<dl class="details">
|
|
1600
|
-
|
|
1601
1754
|
|
|
1602
1755
|
|
|
1603
1756
|
|
|
@@ -1607,7 +1760,15 @@
|
|
|
1607
1760
|
<dt class="inherited-from">Inherited From:</dt>
|
|
1608
1761
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1609
1762
|
<a href="ProtoBuf.Reflect.Namespace.html#getChild">ProtoBuf.Reflect.Namespace#getChild</a>
|
|
1610
|
-
</li></dd>
|
|
1763
|
+
</li></ul></dd>
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
|
|
1770
|
+
|
|
1771
|
+
|
|
1611
1772
|
|
|
1612
1773
|
|
|
1613
1774
|
|
|
@@ -1623,7 +1784,7 @@
|
|
|
1623
1784
|
|
|
1624
1785
|
<dt class="tag-source">Source:</dt>
|
|
1625
1786
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1626
|
-
<a href="
|
|
1787
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1576">line 1576</a>
|
|
1627
1788
|
</li></ul></dd>
|
|
1628
1789
|
|
|
1629
1790
|
|
|
@@ -1635,20 +1796,20 @@
|
|
|
1635
1796
|
</dl>
|
|
1636
1797
|
|
|
1637
1798
|
|
|
1638
|
-
|
|
1639
1799
|
|
|
1640
|
-
|
|
1641
1800
|
|
|
1642
|
-
|
|
1643
1801
|
|
|
1644
|
-
|
|
1645
1802
|
|
|
1646
|
-
|
|
1647
1803
|
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
|
|
1808
|
+
|
|
1809
|
+
|
|
1810
|
+
<h5>Returns:</h5>
|
|
1811
|
+
|
|
1812
|
+
|
|
1652
1813
|
<div class="param-desc">
|
|
1653
1814
|
<p>The child or null if not found</p>
|
|
1654
1815
|
</div>
|
|
@@ -1667,33 +1828,35 @@
|
|
|
1667
1828
|
</dd>
|
|
1668
1829
|
</dl>
|
|
1669
1830
|
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
1831
|
|
|
1673
|
-
|
|
1832
|
+
|
|
1833
|
+
|
|
1674
1834
|
|
|
1675
1835
|
|
|
1676
1836
|
|
|
1677
|
-
<dt>
|
|
1678
|
-
<h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
|
|
1679
1837
|
|
|
1680
1838
|
|
|
1681
|
-
</dt>
|
|
1682
|
-
<dd>
|
|
1683
1839
|
|
|
1684
|
-
|
|
1685
|
-
<div class="description">
|
|
1686
|
-
<p>Returns an array of the namespace's children.</p>
|
|
1687
|
-
</div>
|
|
1688
|
-
|
|
1840
|
+
<h4 class="name" id="getChildren"><span class="type-signature"></span>getChildren<span class="signature">(type<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {Array.<<a href="ProtoBuf.Reflect.T.html">ProtoBuf.Reflect.T</a>>}</span></h4>
|
|
1689
1841
|
|
|
1690
1842
|
|
|
1691
1843
|
|
|
1692
|
-
|
|
1693
1844
|
|
|
1845
|
+
|
|
1846
|
+
<div class="description">
|
|
1847
|
+
<p>Returns an array of the namespace's children.</p>
|
|
1848
|
+
</div>
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
|
+
|
|
1857
|
+
|
|
1858
|
+
<h5>Parameters:</h5>
|
|
1694
1859
|
|
|
1695
|
-
<h5>Parameters:</h5>
|
|
1696
|
-
|
|
1697
1860
|
|
|
1698
1861
|
<table class="params">
|
|
1699
1862
|
<thead>
|
|
@@ -1749,12 +1912,25 @@
|
|
|
1749
1912
|
</tr>
|
|
1750
1913
|
|
|
1751
1914
|
|
|
1752
|
-
</tbody>
|
|
1753
|
-
</table>
|
|
1915
|
+
</tbody>
|
|
1916
|
+
</table>
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
|
|
1922
|
+
|
|
1923
|
+
<dl class="details">
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
|
|
1754
1927
|
|
|
1755
1928
|
|
|
1756
1929
|
|
|
1757
|
-
<
|
|
1930
|
+
<dt class="inherited-from">Inherited From:</dt>
|
|
1931
|
+
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1932
|
+
<a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
|
|
1933
|
+
</li></ul></dd>
|
|
1758
1934
|
|
|
1759
1935
|
|
|
1760
1936
|
|
|
@@ -1762,10 +1938,7 @@
|
|
|
1762
1938
|
|
|
1763
1939
|
|
|
1764
1940
|
|
|
1765
|
-
|
|
1766
|
-
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1767
|
-
<a href="ProtoBuf.Reflect.Namespace.html#getChildren">ProtoBuf.Reflect.Namespace#getChildren</a>
|
|
1768
|
-
</li></dd>
|
|
1941
|
+
|
|
1769
1942
|
|
|
1770
1943
|
|
|
1771
1944
|
|
|
@@ -1781,7 +1954,7 @@
|
|
|
1781
1954
|
|
|
1782
1955
|
<dt class="tag-source">Source:</dt>
|
|
1783
1956
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1784
|
-
<a href="
|
|
1957
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1539">line 1539</a>
|
|
1785
1958
|
</li></ul></dd>
|
|
1786
1959
|
|
|
1787
1960
|
|
|
@@ -1793,20 +1966,20 @@
|
|
|
1793
1966
|
</dl>
|
|
1794
1967
|
|
|
1795
1968
|
|
|
1796
|
-
|
|
1797
1969
|
|
|
1798
|
-
|
|
1799
1970
|
|
|
1800
|
-
|
|
1801
1971
|
|
|
1802
|
-
|
|
1803
1972
|
|
|
1804
|
-
|
|
1805
1973
|
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
|
|
1980
|
+
<h5>Returns:</h5>
|
|
1981
|
+
|
|
1982
|
+
|
|
1810
1983
|
|
|
1811
1984
|
|
|
1812
1985
|
<dl>
|
|
@@ -1821,33 +1994,35 @@
|
|
|
1821
1994
|
</dd>
|
|
1822
1995
|
</dl>
|
|
1823
1996
|
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
1997
|
|
|
1827
|
-
|
|
1998
|
+
|
|
1999
|
+
|
|
1828
2000
|
|
|
1829
2001
|
|
|
1830
2002
|
|
|
1831
|
-
<dt>
|
|
1832
|
-
<h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*|Object.<string, *>}</span></h4>
|
|
1833
2003
|
|
|
1834
2004
|
|
|
1835
|
-
</dt>
|
|
1836
|
-
<dd>
|
|
1837
2005
|
|
|
1838
|
-
|
|
1839
|
-
<div class="description">
|
|
1840
|
-
<p>Gets the value assigned to the option with the specified name.</p>
|
|
1841
|
-
</div>
|
|
1842
|
-
|
|
2006
|
+
<h4 class="name" id="getOption"><span class="type-signature"></span>getOption<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → {*|Object.<string, *>}</span></h4>
|
|
1843
2007
|
|
|
1844
2008
|
|
|
1845
2009
|
|
|
1846
|
-
|
|
1847
2010
|
|
|
2011
|
+
|
|
2012
|
+
<div class="description">
|
|
2013
|
+
<p>Gets the value assigned to the option with the specified name.</p>
|
|
2014
|
+
</div>
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
|
|
2024
|
+
<h5>Parameters:</h5>
|
|
1848
2025
|
|
|
1849
|
-
<h5>Parameters:</h5>
|
|
1850
|
-
|
|
1851
2026
|
|
|
1852
2027
|
<table class="params">
|
|
1853
2028
|
<thead>
|
|
@@ -1905,11 +2080,13 @@
|
|
|
1905
2080
|
|
|
1906
2081
|
</tbody>
|
|
1907
2082
|
</table>
|
|
1908
|
-
|
|
1909
2083
|
|
|
1910
|
-
|
|
2084
|
+
|
|
2085
|
+
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
|
|
1911
2089
|
<dl class="details">
|
|
1912
|
-
|
|
1913
2090
|
|
|
1914
2091
|
|
|
1915
2092
|
|
|
@@ -1919,7 +2096,15 @@
|
|
|
1919
2096
|
<dt class="inherited-from">Inherited From:</dt>
|
|
1920
2097
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
1921
2098
|
<a href="ProtoBuf.Reflect.Namespace.html#getOption">ProtoBuf.Reflect.Namespace#getOption</a>
|
|
1922
|
-
</li></dd>
|
|
2099
|
+
</li></ul></dd>
|
|
2100
|
+
|
|
2101
|
+
|
|
2102
|
+
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
|
|
2106
|
+
|
|
2107
|
+
|
|
1923
2108
|
|
|
1924
2109
|
|
|
1925
2110
|
|
|
@@ -1935,7 +2120,7 @@
|
|
|
1935
2120
|
|
|
1936
2121
|
<dt class="tag-source">Source:</dt>
|
|
1937
2122
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1938
|
-
<a href="
|
|
2123
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1687">line 1687</a>
|
|
1939
2124
|
</li></ul></dd>
|
|
1940
2125
|
|
|
1941
2126
|
|
|
@@ -1947,20 +2132,20 @@
|
|
|
1947
2132
|
</dl>
|
|
1948
2133
|
|
|
1949
2134
|
|
|
1950
|
-
|
|
1951
2135
|
|
|
1952
|
-
|
|
1953
2136
|
|
|
1954
|
-
|
|
1955
2137
|
|
|
1956
|
-
|
|
1957
2138
|
|
|
1958
|
-
|
|
1959
2139
|
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
2140
|
+
|
|
2141
|
+
|
|
2142
|
+
|
|
2143
|
+
|
|
2144
|
+
|
|
2145
|
+
|
|
2146
|
+
<h5>Returns:</h5>
|
|
2147
|
+
|
|
2148
|
+
|
|
1964
2149
|
<div class="param-desc">
|
|
1965
2150
|
<p>null} Option value or NULL if there is no such option</p>
|
|
1966
2151
|
</div>
|
|
@@ -1982,33 +2167,35 @@
|
|
|
1982
2167
|
</dd>
|
|
1983
2168
|
</dl>
|
|
1984
2169
|
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
2170
|
|
|
1988
|
-
|
|
2171
|
+
|
|
2172
|
+
|
|
1989
2173
|
|
|
1990
2174
|
|
|
1991
2175
|
|
|
1992
|
-
<dt>
|
|
1993
|
-
<h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> → {string}</span></h4>
|
|
1994
2176
|
|
|
1995
2177
|
|
|
1996
|
-
</dt>
|
|
1997
|
-
<dd>
|
|
1998
2178
|
|
|
1999
|
-
|
|
2000
|
-
<div class="description">
|
|
2001
|
-
<p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
|
|
2002
|
-
</div>
|
|
2003
|
-
|
|
2179
|
+
<h4 class="name" id="qn"><span class="type-signature"></span>qn<span class="signature">(t<span class="signature-attributes">non-null</span>)</span><span class="type-signature"> → {string}</span></h4>
|
|
2004
2180
|
|
|
2005
2181
|
|
|
2006
2182
|
|
|
2007
|
-
|
|
2008
2183
|
|
|
2184
|
+
|
|
2185
|
+
<div class="description">
|
|
2186
|
+
<p>Determines the shortest qualified name of the specified type, if any, relative to this namespace.</p>
|
|
2187
|
+
</div>
|
|
2188
|
+
|
|
2189
|
+
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
|
|
2197
|
+
<h5>Parameters:</h5>
|
|
2009
2198
|
|
|
2010
|
-
<h5>Parameters:</h5>
|
|
2011
|
-
|
|
2012
2199
|
|
|
2013
2200
|
<table class="params">
|
|
2014
2201
|
<thead>
|
|
@@ -2054,11 +2241,13 @@
|
|
|
2054
2241
|
|
|
2055
2242
|
</tbody>
|
|
2056
2243
|
</table>
|
|
2057
|
-
|
|
2058
2244
|
|
|
2059
|
-
|
|
2245
|
+
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
|
|
2249
|
+
|
|
2060
2250
|
<dl class="details">
|
|
2061
|
-
|
|
2062
2251
|
|
|
2063
2252
|
|
|
2064
2253
|
|
|
@@ -2068,7 +2257,15 @@
|
|
|
2068
2257
|
<dt class="inherited-from">Inherited From:</dt>
|
|
2069
2258
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
2070
2259
|
<a href="ProtoBuf.Reflect.Namespace.html#qn">ProtoBuf.Reflect.Namespace#qn</a>
|
|
2071
|
-
</li></dd>
|
|
2260
|
+
</li></ul></dd>
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
|
|
2264
|
+
|
|
2265
|
+
|
|
2266
|
+
|
|
2267
|
+
|
|
2268
|
+
|
|
2072
2269
|
|
|
2073
2270
|
|
|
2074
2271
|
|
|
@@ -2084,7 +2281,7 @@
|
|
|
2084
2281
|
|
|
2085
2282
|
<dt class="tag-source">Source:</dt>
|
|
2086
2283
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2087
|
-
<a href="
|
|
2284
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1629">line 1629</a>
|
|
2088
2285
|
</li></ul></dd>
|
|
2089
2286
|
|
|
2090
2287
|
|
|
@@ -2096,20 +2293,20 @@
|
|
|
2096
2293
|
</dl>
|
|
2097
2294
|
|
|
2098
2295
|
|
|
2099
|
-
|
|
2100
2296
|
|
|
2101
|
-
|
|
2102
2297
|
|
|
2103
|
-
|
|
2104
2298
|
|
|
2105
|
-
|
|
2106
2299
|
|
|
2107
|
-
|
|
2108
2300
|
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
|
|
2304
|
+
|
|
2305
|
+
|
|
2306
|
+
|
|
2307
|
+
<h5>Returns:</h5>
|
|
2308
|
+
|
|
2309
|
+
|
|
2113
2310
|
<div class="param-desc">
|
|
2114
2311
|
<p>The shortest qualified name or, if there is none, the fqn</p>
|
|
2115
2312
|
</div>
|
|
@@ -2128,33 +2325,35 @@
|
|
|
2128
2325
|
</dd>
|
|
2129
2326
|
</dl>
|
|
2130
2327
|
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
2328
|
|
|
2134
|
-
|
|
2329
|
+
|
|
2330
|
+
|
|
2135
2331
|
|
|
2136
2332
|
|
|
2137
2333
|
|
|
2138
|
-
<dt>
|
|
2139
|
-
<h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
|
|
2140
2334
|
|
|
2141
2335
|
|
|
2142
|
-
</dt>
|
|
2143
|
-
<dd>
|
|
2144
2336
|
|
|
2145
|
-
|
|
2146
|
-
<div class="description">
|
|
2147
|
-
<p>Resolves a reflect object inside of this namespace.</p>
|
|
2148
|
-
</div>
|
|
2149
|
-
|
|
2337
|
+
<h4 class="name" id="resolve"><span class="type-signature"></span>resolve<span class="signature">(qn, excludeNonNamespace<span class="signature-attributes">opt</span>)</span><span class="type-signature"> → (nullable) {<a href="ProtoBuf.Reflect.Namespace.html">ProtoBuf.Reflect.Namespace</a>}</span></h4>
|
|
2150
2338
|
|
|
2151
2339
|
|
|
2152
2340
|
|
|
2153
|
-
|
|
2154
2341
|
|
|
2342
|
+
|
|
2343
|
+
<div class="description">
|
|
2344
|
+
<p>Resolves a reflect object inside of this namespace.</p>
|
|
2345
|
+
</div>
|
|
2346
|
+
|
|
2347
|
+
|
|
2348
|
+
|
|
2349
|
+
|
|
2350
|
+
|
|
2351
|
+
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
|
|
2355
|
+
<h5>Parameters:</h5>
|
|
2155
2356
|
|
|
2156
|
-
<h5>Parameters:</h5>
|
|
2157
|
-
|
|
2158
2357
|
|
|
2159
2358
|
<table class="params">
|
|
2160
2359
|
<thead>
|
|
@@ -2246,11 +2445,13 @@
|
|
|
2246
2445
|
|
|
2247
2446
|
</tbody>
|
|
2248
2447
|
</table>
|
|
2249
|
-
|
|
2250
2448
|
|
|
2251
|
-
|
|
2449
|
+
|
|
2450
|
+
|
|
2451
|
+
|
|
2452
|
+
|
|
2453
|
+
|
|
2252
2454
|
<dl class="details">
|
|
2253
|
-
|
|
2254
2455
|
|
|
2255
2456
|
|
|
2256
2457
|
|
|
@@ -2260,7 +2461,15 @@
|
|
|
2260
2461
|
<dt class="inherited-from">Inherited From:</dt>
|
|
2261
2462
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
2262
2463
|
<a href="ProtoBuf.Reflect.Namespace.html#resolve">ProtoBuf.Reflect.Namespace#resolve</a>
|
|
2263
|
-
</li></dd>
|
|
2464
|
+
</li></ul></dd>
|
|
2465
|
+
|
|
2466
|
+
|
|
2467
|
+
|
|
2468
|
+
|
|
2469
|
+
|
|
2470
|
+
|
|
2471
|
+
|
|
2472
|
+
|
|
2264
2473
|
|
|
2265
2474
|
|
|
2266
2475
|
|
|
@@ -2276,7 +2485,7 @@
|
|
|
2276
2485
|
|
|
2277
2486
|
<dt class="tag-source">Source:</dt>
|
|
2278
2487
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2279
|
-
<a href="
|
|
2488
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1591">line 1591</a>
|
|
2280
2489
|
</li></ul></dd>
|
|
2281
2490
|
|
|
2282
2491
|
|
|
@@ -2288,20 +2497,20 @@
|
|
|
2288
2497
|
</dl>
|
|
2289
2498
|
|
|
2290
2499
|
|
|
2291
|
-
|
|
2292
2500
|
|
|
2293
|
-
|
|
2294
2501
|
|
|
2295
|
-
|
|
2296
2502
|
|
|
2297
|
-
|
|
2298
2503
|
|
|
2299
|
-
|
|
2300
2504
|
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2505
|
+
|
|
2506
|
+
|
|
2507
|
+
|
|
2508
|
+
|
|
2509
|
+
|
|
2510
|
+
|
|
2511
|
+
<h5>Returns:</h5>
|
|
2512
|
+
|
|
2513
|
+
|
|
2305
2514
|
<div class="param-desc">
|
|
2306
2515
|
<p>The resolved type or null if not found</p>
|
|
2307
2516
|
</div>
|
|
@@ -2320,33 +2529,35 @@
|
|
|
2320
2529
|
</dd>
|
|
2321
2530
|
</dl>
|
|
2322
2531
|
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
2532
|
|
|
2326
|
-
|
|
2533
|
+
|
|
2534
|
+
|
|
2327
2535
|
|
|
2328
2536
|
|
|
2329
2537
|
|
|
2330
|
-
<dt>
|
|
2331
|
-
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
2332
2538
|
|
|
2333
2539
|
|
|
2334
|
-
</dt>
|
|
2335
|
-
<dd>
|
|
2336
2540
|
|
|
2337
|
-
|
|
2338
|
-
<div class="description">
|
|
2339
|
-
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
2340
|
-
</div>
|
|
2341
|
-
|
|
2541
|
+
<h4 class="name" id="toString"><span class="type-signature"></span>toString<span class="signature">(includeClass<span class="signature-attributes">opt</span>)</span><span class="type-signature"></span></h4>
|
|
2342
2542
|
|
|
2343
2543
|
|
|
2344
2544
|
|
|
2345
|
-
|
|
2346
2545
|
|
|
2546
|
+
|
|
2547
|
+
<div class="description">
|
|
2548
|
+
<p>Returns a string representation of this Reflect object (its fully qualified name).</p>
|
|
2549
|
+
</div>
|
|
2550
|
+
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
|
|
2554
|
+
|
|
2555
|
+
|
|
2556
|
+
|
|
2557
|
+
|
|
2558
|
+
|
|
2559
|
+
<h5>Parameters:</h5>
|
|
2347
2560
|
|
|
2348
|
-
<h5>Parameters:</h5>
|
|
2349
|
-
|
|
2350
2561
|
|
|
2351
2562
|
<table class="params">
|
|
2352
2563
|
<thead>
|
|
@@ -2404,11 +2615,13 @@
|
|
|
2404
2615
|
|
|
2405
2616
|
</tbody>
|
|
2406
2617
|
</table>
|
|
2407
|
-
|
|
2408
2618
|
|
|
2409
|
-
|
|
2619
|
+
|
|
2620
|
+
|
|
2621
|
+
|
|
2622
|
+
|
|
2623
|
+
|
|
2410
2624
|
<dl class="details">
|
|
2411
|
-
|
|
2412
2625
|
|
|
2413
2626
|
|
|
2414
2627
|
|
|
@@ -2418,7 +2631,15 @@
|
|
|
2418
2631
|
<dt class="inherited-from">Inherited From:</dt>
|
|
2419
2632
|
<dd class="inherited-from"><ul class="dummy"><li>
|
|
2420
2633
|
<a href="ProtoBuf.Reflect.T.html#toString">ProtoBuf.Reflect.T#toString</a>
|
|
2421
|
-
</li></dd>
|
|
2634
|
+
</li></ul></dd>
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
|
|
2638
|
+
|
|
2639
|
+
|
|
2640
|
+
|
|
2641
|
+
|
|
2642
|
+
|
|
2422
2643
|
|
|
2423
2644
|
|
|
2424
2645
|
|
|
@@ -2434,7 +2655,7 @@
|
|
|
2434
2655
|
|
|
2435
2656
|
<dt class="tag-source">Source:</dt>
|
|
2436
2657
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
2437
|
-
<a href="
|
|
2658
|
+
<a href="protobuf.js.html">protobuf.js</a>, <a href="protobuf.js.html#line1470">line 1470</a>
|
|
2438
2659
|
</li></ul></dd>
|
|
2439
2660
|
|
|
2440
2661
|
|
|
@@ -2446,32 +2667,31 @@
|
|
|
2446
2667
|
</dl>
|
|
2447
2668
|
|
|
2448
2669
|
|
|
2449
|
-
|
|
2450
2670
|
|
|
2451
|
-
|
|
2452
2671
|
|
|
2453
|
-
|
|
2454
2672
|
|
|
2455
|
-
|
|
2456
2673
|
|
|
2457
|
-
|
|
2458
2674
|
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2675
|
+
|
|
2676
|
+
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
|
|
2680
|
+
|
|
2681
|
+
<h5>Returns:</h5>
|
|
2682
|
+
|
|
2683
|
+
|
|
2463
2684
|
<div class="param-desc">
|
|
2464
2685
|
<p>String representation</p>
|
|
2465
2686
|
</div>
|
|
2466
2687
|
|
|
2467
2688
|
|
|
2468
2689
|
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
2690
|
|
|
2472
|
-
</dd>
|
|
2473
2691
|
|
|
2474
|
-
|
|
2692
|
+
|
|
2693
|
+
|
|
2694
|
+
|
|
2475
2695
|
|
|
2476
2696
|
|
|
2477
2697
|
|
|
@@ -2487,13 +2707,13 @@
|
|
|
2487
2707
|
</div>
|
|
2488
2708
|
|
|
2489
2709
|
<nav>
|
|
2490
|
-
<h2><a href="index.html">
|
|
2710
|
+
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="ProtoBuf.Builder.html">Builder</a></li><li><a href="ProtoBuf.Builder.Message.html">Message</a></li><li><a href="ProtoBuf.Builder.Service.html">Service</a></li><li><a href="ProtoBuf.DotProto.Parser.html">Parser</a></li><li><a href="ProtoBuf.DotProto.Tokenizer.html">Tokenizer</a></li><li><a href="ProtoBuf.Map.html">Map</a></li><li><a href="ProtoBuf.Reflect.Element.html">Element</a></li><li><a href="ProtoBuf.Reflect.Enum.html">Enum</a></li><li><a href="ProtoBuf.Reflect.Enum.Value.html">Value</a></li><li><a href="ProtoBuf.Reflect.Extension.html">Extension</a></li><li><a href="ProtoBuf.Reflect.Message.html">Message</a></li><li><a href="ProtoBuf.Reflect.Message.ExtensionField.html">ExtensionField</a></li><li><a href="ProtoBuf.Reflect.Message.Field.html">Field</a></li><li><a href="ProtoBuf.Reflect.Message.OneOf.html">OneOf</a></li><li><a href="ProtoBuf.Reflect.Namespace.html">Namespace</a></li><li><a href="ProtoBuf.Reflect.Service.html">Service</a></li><li><a href="ProtoBuf.Reflect.Service.Method.html">Method</a></li><li><a href="ProtoBuf.Reflect.Service.RPCMethod.html">RPCMethod</a></li><li><a href="ProtoBuf.Reflect.T.html">T</a></li></ul><h3>Namespaces</h3><ul><li><a href="ProtoBuf.html">ProtoBuf</a></li><li><a href="ProtoBuf.DotProto.html">DotProto</a></li><li><a href="ProtoBuf.Reflect.html">Reflect</a></li><li><a href="ProtoBuf.Util.html">Util</a></li></ul>
|
|
2491
2711
|
</nav>
|
|
2492
2712
|
|
|
2493
|
-
<br
|
|
2713
|
+
<br class="clear">
|
|
2494
2714
|
|
|
2495
2715
|
<footer>
|
|
2496
|
-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.
|
|
2716
|
+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.3</a> on Fri Jan 27 2017 17:03:55 GMT+0100 (Mitteleuropäische Zeit)
|
|
2497
2717
|
</footer>
|
|
2498
2718
|
|
|
2499
2719
|
<script> prettyPrint(); </script>
|