aboutsummaryrefslogtreecommitdiff
path: root/csharp/TestBed/java/slowbcl/Slowbcl.java
blob: 48c7b75e8189731069663021bd36074a7668a78c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
// Generated by the protocol buffer compiler.  DO NOT EDIT!

package slowbcl;

public final class Slowbcl {
  private Slowbcl() {}
  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static final com.google.protobuf.Descriptors.FileDescriptor
      descriptor = buildDescriptor();
  private static
      com.google.protobuf.Descriptors.FileDescriptor
      buildDescriptor() {
    java.lang.String descriptorData =
      "\n\rslowbcl.proto\022\007slowbcl\"\255\001\n\010TimeSpan\022\r\n" +
      "\005value\030\001 \001(\022\0224\n\005scale\030\002 \001(\0162\037.slowbcl.Ti" +
      "meSpan.TimeSpanScale:\004DAYS\"\\\n\rTimeSpanSc" +
      "ale\022\010\n\004DAYS\020\000\022\t\n\005HOURS\020\001\022\013\n\007MINUTES\020\002\022\013\n" +
      "\007SECONDS\020\003\022\020\n\014MILLISECONDS\020\004\022\n\n\006MINMAX\020\017" +
      "\"\255\001\n\010DateTime\022\r\n\005value\030\001 \001(\022\0224\n\005scale\030\002 " +
      "\001(\0162\037.slowbcl.DateTime.TimeSpanScale:\004DA" +
      "YS\"\\\n\rTimeSpanScale\022\010\n\004DAYS\020\000\022\t\n\005HOURS\020\001" +
      "\022\013\n\007MINUTES\020\002\022\013\n\007SECONDS\020\003\022\020\n\014MILLISECON" +
      "DS\020\004\022\n\n\006MINMAX\020\017\"\036\n\004Guid\022\n\n\002lo\030\001 \001(\006\022\n\n\002" +
      "hi\030\002 \001(\006\"4\n\007Decimal\022\n\n\002lo\030\001 \001(\004\022\n\n\002hi\030\002 " +
      "\001(\r\022\021\n\tsignScale\030\003 \001(\rB4\302>\036Google.Protoc" +
      "olBuffers.SlowBcl\312>\020SlowBclProtoFile";
    try {
      return com.google.protobuf.Descriptors.FileDescriptor
        .internalBuildGeneratedFileFrom(descriptorData,
          new com.google.protobuf.Descriptors.FileDescriptor[] {
          });
    } catch (Exception e) {
      throw new RuntimeException(
        "Failed to parse protocol buffer descriptor for " +
        "\"slowbcl.proto\".", e);
    }
  }
  
  public static final class TimeSpan extends
      com.google.protobuf.GeneratedMessage {
    // Use TimeSpan.newBuilder() to construct.
    private TimeSpan() {}
    
    private static final TimeSpan defaultInstance = new TimeSpan();
    public static TimeSpan getDefaultInstance() {
      return defaultInstance;
    }
    
    public TimeSpan getDefaultInstanceForType() {
      return defaultInstance;
    }
    
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return slowbcl.Slowbcl.internal_static_slowbcl_TimeSpan_descriptor;
    }
    
    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return slowbcl.Slowbcl.internal_static_slowbcl_TimeSpan_fieldAccessorTable;
    }
    
    public static enum TimeSpanScale {
      DAYS(0, 0),
      HOURS(1, 1),
      MINUTES(2, 2),
      SECONDS(3, 3),
      MILLISECONDS(4, 4),
      MINMAX(5, 15),
      ;
      
      
      public final int getNumber() { return value; }
      
      public static TimeSpanScale valueOf(int value) {
        switch (value) {
          case 0: return DAYS;
          case 1: return HOURS;
          case 2: return MINUTES;
          case 3: return SECONDS;
          case 4: return MILLISECONDS;
          case 15: return MINMAX;
          default: return null;
        }
      }
      
      public final com.google.protobuf.Descriptors.EnumValueDescriptor
          getValueDescriptor() {
        return getDescriptor().getValues().get(index);
      }
      public final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptorForType() {
        return getDescriptor();
      }
      public static final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptor() {
        return slowbcl.Slowbcl.TimeSpan.getDescriptor().getEnumTypes().get(0);
      }
      
      private static final TimeSpanScale[] VALUES = {
        DAYS, HOURS, MINUTES, SECONDS, MILLISECONDS, MINMAX, 
      };
      public static TimeSpanScale valueOf(
          com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
        if (desc.getType() != getDescriptor()) {
          throw new java.lang.IllegalArgumentException(
            "EnumValueDescriptor is not for this type.");
        }
        return VALUES[desc.getIndex()];
      }
      private final int index;
      private final int value;
      private TimeSpanScale(int index, int value) {
        this.index = index;
        this.value = value;
      }
    }
    
    // optional sint64 value = 1;
    private boolean hasValue;
    private long value_ = 0L;
    public boolean hasValue() { return hasValue; }
    public long getValue() { return value_; }
    
    // optional .slowbcl.TimeSpan.TimeSpanScale scale = 2 [default = DAYS];
    private boolean hasScale;
    private slowbcl.Slowbcl.TimeSpan.TimeSpanScale scale_ = slowbcl.Slowbcl.TimeSpan.TimeSpanScale.DAYS;
    public boolean hasScale() { return hasScale; }
    public slowbcl.Slowbcl.TimeSpan.TimeSpanScale getScale() { return scale_; }
    
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.TimeSpan parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    
    public static Builder newBuilder() { return new Builder(); }
    public Builder newBuilderForType() { return new Builder(); }
    public static Builder newBuilder(slowbcl.Slowbcl.TimeSpan prototype) {
      return new Builder().mergeFrom(prototype);
    }
    
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder<Builder> {
      // Construct using slowbcl.Slowbcl.TimeSpan.newBuilder()
      private Builder() {}
      
      slowbcl.Slowbcl.TimeSpan result = new slowbcl.Slowbcl.TimeSpan();
      
      protected slowbcl.Slowbcl.TimeSpan internalGetResult() {
        return result;
      }
      
      public Builder clear() {
        result = new slowbcl.Slowbcl.TimeSpan();
        return this;
      }
      
      public Builder clone() {
        return new Builder().mergeFrom(result);
      }
      
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return slowbcl.Slowbcl.TimeSpan.getDescriptor();
      }
      
      public slowbcl.Slowbcl.TimeSpan getDefaultInstanceForType() {
        return slowbcl.Slowbcl.TimeSpan.getDefaultInstance();
      }
      
      public slowbcl.Slowbcl.TimeSpan build() {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result);
        }
        return buildPartial();
      }
      
      private slowbcl.Slowbcl.TimeSpan buildParsed()
          throws com.google.protobuf.InvalidProtocolBufferException {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result).asInvalidProtocolBufferException();
        }
        return buildPartial();
      }
      
      public slowbcl.Slowbcl.TimeSpan buildPartial() {
        slowbcl.Slowbcl.TimeSpan returnMe = result;
        result = null;
        return returnMe;
      }
      
      
      // optional sint64 value = 1;
      public boolean hasValue() {
        return result.hasValue();
      }
      public long getValue() {
        return result.getValue();
      }
      public Builder setValue(long value) {
        result.hasValue = true;
        result.value_ = value;
        return this;
      }
      public Builder clearValue() {
        result.hasValue = false;
        result.value_ = 0L;
        return this;
      }
      
      // optional .slowbcl.TimeSpan.TimeSpanScale scale = 2 [default = DAYS];
      public boolean hasScale() {
        return result.hasScale();
      }
      public slowbcl.Slowbcl.TimeSpan.TimeSpanScale getScale() {
        return result.getScale();
      }
      public Builder setScale(slowbcl.Slowbcl.TimeSpan.TimeSpanScale value) {
        result.hasScale = true;
        result.scale_ = value;
        return this;
      }
      public Builder clearScale() {
        result.hasScale = false;
        result.scale_ = slowbcl.Slowbcl.TimeSpan.TimeSpanScale.DAYS;
        return this;
      }
    }
  }
  
  public static final class DateTime extends
      com.google.protobuf.GeneratedMessage {
    // Use DateTime.newBuilder() to construct.
    private DateTime() {}
    
    private static final DateTime defaultInstance = new DateTime();
    public static DateTime getDefaultInstance() {
      return defaultInstance;
    }
    
    public DateTime getDefaultInstanceForType() {
      return defaultInstance;
    }
    
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return slowbcl.Slowbcl.internal_static_slowbcl_DateTime_descriptor;
    }
    
    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return slowbcl.Slowbcl.internal_static_slowbcl_DateTime_fieldAccessorTable;
    }
    
    public static enum TimeSpanScale {
      DAYS(0, 0),
      HOURS(1, 1),
      MINUTES(2, 2),
      SECONDS(3, 3),
      MILLISECONDS(4, 4),
      MINMAX(5, 15),
      ;
      
      
      public final int getNumber() { return value; }
      
      public static TimeSpanScale valueOf(int value) {
        switch (value) {
          case 0: return DAYS;
          case 1: return HOURS;
          case 2: return MINUTES;
          case 3: return SECONDS;
          case 4: return MILLISECONDS;
          case 15: return MINMAX;
          default: return null;
        }
      }
      
      public final com.google.protobuf.Descriptors.EnumValueDescriptor
          getValueDescriptor() {
        return getDescriptor().getValues().get(index);
      }
      public final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptorForType() {
        return getDescriptor();
      }
      public static final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptor() {
        return slowbcl.Slowbcl.DateTime.getDescriptor().getEnumTypes().get(0);
      }
      
      private static final TimeSpanScale[] VALUES = {
        DAYS, HOURS, MINUTES, SECONDS, MILLISECONDS, MINMAX, 
      };
      public static TimeSpanScale valueOf(
          com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
        if (desc.getType() != getDescriptor()) {
          throw new java.lang.IllegalArgumentException(
            "EnumValueDescriptor is not for this type.");
        }
        return VALUES[desc.getIndex()];
      }
      private final int index;
      private final int value;
      private TimeSpanScale(int index, int value) {
        this.index = index;
        this.value = value;
      }
    }
    
    // optional sint64 value = 1;
    private boolean hasValue;
    private long value_ = 0L;
    public boolean hasValue() { return hasValue; }
    public long getValue() { return value_; }
    
    // optional .slowbcl.DateTime.TimeSpanScale scale = 2 [default = DAYS];
    private boolean hasScale;
    private slowbcl.Slowbcl.DateTime.TimeSpanScale scale_ = slowbcl.Slowbcl.DateTime.TimeSpanScale.DAYS;
    public boolean hasScale() { return hasScale; }
    public slowbcl.Slowbcl.DateTime.TimeSpanScale getScale() { return scale_; }
    
    public static slowbcl.Slowbcl.DateTime parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.DateTime parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    
    public static Builder newBuilder() { return new Builder(); }
    public Builder newBuilderForType() { return new Builder(); }
    public static Builder newBuilder(slowbcl.Slowbcl.DateTime prototype) {
      return new Builder().mergeFrom(prototype);
    }
    
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder<Builder> {
      // Construct using slowbcl.Slowbcl.DateTime.newBuilder()
      private Builder() {}
      
      slowbcl.Slowbcl.DateTime result = new slowbcl.Slowbcl.DateTime();
      
      protected slowbcl.Slowbcl.DateTime internalGetResult() {
        return result;
      }
      
      public Builder clear() {
        result = new slowbcl.Slowbcl.DateTime();
        return this;
      }
      
      public Builder clone() {
        return new Builder().mergeFrom(result);
      }
      
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return slowbcl.Slowbcl.DateTime.getDescriptor();
      }
      
      public slowbcl.Slowbcl.DateTime getDefaultInstanceForType() {
        return slowbcl.Slowbcl.DateTime.getDefaultInstance();
      }
      
      public slowbcl.Slowbcl.DateTime build() {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result);
        }
        return buildPartial();
      }
      
      private slowbcl.Slowbcl.DateTime buildParsed()
          throws com.google.protobuf.InvalidProtocolBufferException {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result).asInvalidProtocolBufferException();
        }
        return buildPartial();
      }
      
      public slowbcl.Slowbcl.DateTime buildPartial() {
        slowbcl.Slowbcl.DateTime returnMe = result;
        result = null;
        return returnMe;
      }
      
      
      // optional sint64 value = 1;
      public boolean hasValue() {
        return result.hasValue();
      }
      public long getValue() {
        return result.getValue();
      }
      public Builder setValue(long value) {
        result.hasValue = true;
        result.value_ = value;
        return this;
      }
      public Builder clearValue() {
        result.hasValue = false;
        result.value_ = 0L;
        return this;
      }
      
      // optional .slowbcl.DateTime.TimeSpanScale scale = 2 [default = DAYS];
      public boolean hasScale() {
        return result.hasScale();
      }
      public slowbcl.Slowbcl.DateTime.TimeSpanScale getScale() {
        return result.getScale();
      }
      public Builder setScale(slowbcl.Slowbcl.DateTime.TimeSpanScale value) {
        result.hasScale = true;
        result.scale_ = value;
        return this;
      }
      public Builder clearScale() {
        result.hasScale = false;
        result.scale_ = slowbcl.Slowbcl.DateTime.TimeSpanScale.DAYS;
        return this;
      }
    }
  }
  
  public static final class Guid extends
      com.google.protobuf.GeneratedMessage {
    // Use Guid.newBuilder() to construct.
    private Guid() {}
    
    private static final Guid defaultInstance = new Guid();
    public static Guid getDefaultInstance() {
      return defaultInstance;
    }
    
    public Guid getDefaultInstanceForType() {
      return defaultInstance;
    }
    
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return slowbcl.Slowbcl.internal_static_slowbcl_Guid_descriptor;
    }
    
    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return slowbcl.Slowbcl.internal_static_slowbcl_Guid_fieldAccessorTable;
    }
    
    // optional fixed64 lo = 1;
    private boolean hasLo;
    private long lo_ = 0L;
    public boolean hasLo() { return hasLo; }
    public long getLo() { return lo_; }
    
    // optional fixed64 hi = 2;
    private boolean hasHi;
    private long hi_ = 0L;
    public boolean hasHi() { return hasHi; }
    public long getHi() { return hi_; }
    
    public static slowbcl.Slowbcl.Guid parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.Guid parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    
    public static Builder newBuilder() { return new Builder(); }
    public Builder newBuilderForType() { return new Builder(); }
    public static Builder newBuilder(slowbcl.Slowbcl.Guid prototype) {
      return new Builder().mergeFrom(prototype);
    }
    
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder<Builder> {
      // Construct using slowbcl.Slowbcl.Guid.newBuilder()
      private Builder() {}
      
      slowbcl.Slowbcl.Guid result = new slowbcl.Slowbcl.Guid();
      
      protected slowbcl.Slowbcl.Guid internalGetResult() {
        return result;
      }
      
      public Builder clear() {
        result = new slowbcl.Slowbcl.Guid();
        return this;
      }
      
      public Builder clone() {
        return new Builder().mergeFrom(result);
      }
      
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return slowbcl.Slowbcl.Guid.getDescriptor();
      }
      
      public slowbcl.Slowbcl.Guid getDefaultInstanceForType() {
        return slowbcl.Slowbcl.Guid.getDefaultInstance();
      }
      
      public slowbcl.Slowbcl.Guid build() {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result);
        }
        return buildPartial();
      }
      
      private slowbcl.Slowbcl.Guid buildParsed()
          throws com.google.protobuf.InvalidProtocolBufferException {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result).asInvalidProtocolBufferException();
        }
        return buildPartial();
      }
      
      public slowbcl.Slowbcl.Guid buildPartial() {
        slowbcl.Slowbcl.Guid returnMe = result;
        result = null;
        return returnMe;
      }
      
      
      // optional fixed64 lo = 1;
      public boolean hasLo() {
        return result.hasLo();
      }
      public long getLo() {
        return result.getLo();
      }
      public Builder setLo(long value) {
        result.hasLo = true;
        result.lo_ = value;
        return this;
      }
      public Builder clearLo() {
        result.hasLo = false;
        result.lo_ = 0L;
        return this;
      }
      
      // optional fixed64 hi = 2;
      public boolean hasHi() {
        return result.hasHi();
      }
      public long getHi() {
        return result.getHi();
      }
      public Builder setHi(long value) {
        result.hasHi = true;
        result.hi_ = value;
        return this;
      }
      public Builder clearHi() {
        result.hasHi = false;
        result.hi_ = 0L;
        return this;
      }
    }
  }
  
  public static final class Decimal extends
      com.google.protobuf.GeneratedMessage {
    // Use Decimal.newBuilder() to construct.
    private Decimal() {}
    
    private static final Decimal defaultInstance = new Decimal();
    public static Decimal getDefaultInstance() {
      return defaultInstance;
    }
    
    public Decimal getDefaultInstanceForType() {
      return defaultInstance;
    }
    
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return slowbcl.Slowbcl.internal_static_slowbcl_Decimal_descriptor;
    }
    
    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return slowbcl.Slowbcl.internal_static_slowbcl_Decimal_fieldAccessorTable;
    }
    
    // optional uint64 lo = 1;
    private boolean hasLo;
    private long lo_ = 0L;
    public boolean hasLo() { return hasLo; }
    public long getLo() { return lo_; }
    
    // optional uint32 hi = 2;
    private boolean hasHi;
    private int hi_ = 0;
    public boolean hasHi() { return hasHi; }
    public int getHi() { return hi_; }
    
    // optional uint32 signScale = 3;
    private boolean hasSignScale;
    private int signScale_ = 0;
    public boolean hasSignScale() { return hasSignScale; }
    public int getSignScale() { return signScale_; }
    
    public static slowbcl.Slowbcl.Decimal parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data).buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return newBuilder().mergeFrom(data, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input).buildParsed();
    }
    public static slowbcl.Slowbcl.Decimal parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistry extensionRegistry)
        throws java.io.IOException {
      return newBuilder().mergeFrom(input, extensionRegistry)
               .buildParsed();
    }
    
    public static Builder newBuilder() { return new Builder(); }
    public Builder newBuilderForType() { return new Builder(); }
    public static Builder newBuilder(slowbcl.Slowbcl.Decimal prototype) {
      return new Builder().mergeFrom(prototype);
    }
    
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder<Builder> {
      // Construct using slowbcl.Slowbcl.Decimal.newBuilder()
      private Builder() {}
      
      slowbcl.Slowbcl.Decimal result = new slowbcl.Slowbcl.Decimal();
      
      protected slowbcl.Slowbcl.Decimal internalGetResult() {
        return result;
      }
      
      public Builder clear() {
        result = new slowbcl.Slowbcl.Decimal();
        return this;
      }
      
      public Builder clone() {
        return new Builder().mergeFrom(result);
      }
      
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return slowbcl.Slowbcl.Decimal.getDescriptor();
      }
      
      public slowbcl.Slowbcl.Decimal getDefaultInstanceForType() {
        return slowbcl.Slowbcl.Decimal.getDefaultInstance();
      }
      
      public slowbcl.Slowbcl.Decimal build() {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result);
        }
        return buildPartial();
      }
      
      private slowbcl.Slowbcl.Decimal buildParsed()
          throws com.google.protobuf.InvalidProtocolBufferException {
        if (!isInitialized()) {
          throw new com.google.protobuf.UninitializedMessageException(
            result).asInvalidProtocolBufferException();
        }
        return buildPartial();
      }
      
      public slowbcl.Slowbcl.Decimal buildPartial() {
        slowbcl.Slowbcl.Decimal returnMe = result;
        result = null;
        return returnMe;
      }
      
      
      // optional uint64 lo = 1;
      public boolean hasLo() {
        return result.hasLo();
      }
      public long getLo() {
        return result.getLo();
      }
      public Builder setLo(long value) {
        result.hasLo = true;
        result.lo_ = value;
        return this;
      }
      public Builder clearLo() {
        result.hasLo = false;
        result.lo_ = 0L;
        return this;
      }
      
      // optional uint32 hi = 2;
      public boolean hasHi() {
        return result.hasHi();
      }
      public int getHi() {
        return result.getHi();
      }
      public Builder setHi(int value) {
        result.hasHi = true;
        result.hi_ = value;
        return this;
      }
      public Builder clearHi() {
        result.hasHi = false;
        result.hi_ = 0;
        return this;
      }
      
      // optional uint32 signScale = 3;
      public boolean hasSignScale() {
        return result.hasSignScale();
      }
      public int getSignScale() {
        return result.getSignScale();
      }
      public Builder setSignScale(int value) {
        result.hasSignScale = true;
        result.signScale_ = value;
        return this;
      }
      public Builder clearSignScale() {
        result.hasSignScale = false;
        result.signScale_ = 0;
        return this;
      }
    }
  }
  
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_slowbcl_TimeSpan_descriptor =
      getDescriptor().getMessageTypes().get(0);
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_slowbcl_TimeSpan_fieldAccessorTable = new
        com.google.protobuf.GeneratedMessage.FieldAccessorTable(
          internal_static_slowbcl_TimeSpan_descriptor,
          new java.lang.String[] { "Value", "Scale", },
          slowbcl.Slowbcl.TimeSpan.class,
          slowbcl.Slowbcl.TimeSpan.Builder.class);
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_slowbcl_DateTime_descriptor =
      getDescriptor().getMessageTypes().get(1);
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_slowbcl_DateTime_fieldAccessorTable = new
        com.google.protobuf.GeneratedMessage.FieldAccessorTable(
          internal_static_slowbcl_DateTime_descriptor,
          new java.lang.String[] { "Value", "Scale", },
          slowbcl.Slowbcl.DateTime.class,
          slowbcl.Slowbcl.DateTime.Builder.class);
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_slowbcl_Guid_descriptor =
      getDescriptor().getMessageTypes().get(2);
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_slowbcl_Guid_fieldAccessorTable = new
        com.google.protobuf.GeneratedMessage.FieldAccessorTable(
          internal_static_slowbcl_Guid_descriptor,
          new java.lang.String[] { "Lo", "Hi", },
          slowbcl.Slowbcl.Guid.class,
          slowbcl.Slowbcl.Guid.Builder.class);
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_slowbcl_Decimal_descriptor =
      getDescriptor().getMessageTypes().get(3);
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_slowbcl_Decimal_fieldAccessorTable = new
        com.google.protobuf.GeneratedMessage.FieldAccessorTable(
          internal_static_slowbcl_Decimal_descriptor,
          new java.lang.String[] { "Lo", "Hi", "SignScale", },
          slowbcl.Slowbcl.Decimal.class,
          slowbcl.Slowbcl.Decimal.Builder.class);
}