summaryrefslogtreecommitdiff
path: root/ojluni/annotations/hiddenapi/java/io/ObjectInputStream.java
blob: 562d846f23766bc9cfa14f1af3e89e43e279df4f (plain)
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
/*
 * Copyright (C) 2014 The Android Open Source Project
 * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package java.io;

import android.compat.annotation.UnsupportedAppUsage;

@SuppressWarnings({"unchecked", "deprecation", "all"})
public class ObjectInputStream extends java.io.InputStream
        implements java.io.ObjectInput, java.io.ObjectStreamConstants {

    public ObjectInputStream(java.io.InputStream in) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected ObjectInputStream() throws java.io.IOException, java.lang.SecurityException {
        throw new RuntimeException("Stub!");
    }

    public final java.lang.Object readObject()
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Object readObjectOverride()
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public java.lang.Object readUnshared()
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public void defaultReadObject() throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public java.io.ObjectInputStream.GetField readFields()
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public void registerValidation(java.io.ObjectInputValidation obj, int prio)
            throws java.io.InvalidObjectException, java.io.NotActiveException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Class<?> resolveClass(java.io.ObjectStreamClass desc)
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Class<?> resolveProxyClass(java.lang.String[] interfaces)
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected java.lang.Object resolveObject(java.lang.Object obj) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    protected boolean enableResolveObject(boolean enable) throws java.lang.SecurityException {
        throw new RuntimeException("Stub!");
    }

    protected void readStreamHeader() throws java.io.IOException, java.io.StreamCorruptedException {
        throw new RuntimeException("Stub!");
    }

    protected java.io.ObjectStreamClass readClassDescriptor()
            throws java.lang.ClassNotFoundException, java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int read() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int read(byte[] buf, int off, int len) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int available() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public void close() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public boolean readBoolean() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public byte readByte() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int readUnsignedByte() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public char readChar() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public short readShort() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int readUnsignedShort() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int readInt() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public long readLong() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public float readFloat() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public double readDouble() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public void readFully(byte[] buf) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public void readFully(byte[] buf, int off, int len) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public int skipBytes(int len) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    @Deprecated
    public java.lang.String readLine() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    public java.lang.String readUTF() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void verifySubclass() {
        throw new RuntimeException("Stub!");
    }

    private static boolean auditSubclass(java.lang.Class<?> subcl) {
        throw new RuntimeException("Stub!");
    }

    private void clear() {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object readObject0(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object checkResolve(java.lang.Object obj) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    java.lang.String readTypeString() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object readNull() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object readHandle(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Class<?> readClass(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.io.ObjectStreamClass readClassDesc(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private boolean isCustomSubclass() {
        throw new RuntimeException("Stub!");
    }

    private java.io.ObjectStreamClass readProxyDesc(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.io.ObjectStreamClass readNonProxyDesc(boolean unshared)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.String readString(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object readArray(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Enum<?> readEnum(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.lang.Object readOrdinaryObject(boolean unshared) throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void readExternalData(java.io.Externalizable obj, java.io.ObjectStreamClass desc)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void readSerialData(java.lang.Object obj, java.io.ObjectStreamClass desc)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void skipCustomData() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void defaultReadFields(java.lang.Object obj, java.io.ObjectStreamClass desc)
            throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private java.io.IOException readFatalException() throws java.io.IOException {
        throw new RuntimeException("Stub!");
    }

    private void handleReset() throws java.io.StreamCorruptedException {
        throw new RuntimeException("Stub!");
    }

    @UnsupportedAppUsage
    private static native void bytesToFloats(
            byte[] src, int srcpos, float[] dst, int dstpos, int nfloats);

    @UnsupportedAppUsage
    private static native void bytesToDoubles(
            byte[] src, int srcpos, double[] dst, int dstpos, int ndoubles);

    private static java.lang.ClassLoader latestUserDefinedLoader() {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.Object cloneArray(java.lang.Object array) {
        throw new RuntimeException("Stub!");
    }

    private static final int NULL_HANDLE = -1; // 0xffffffff

    @UnsupportedAppUsage
    private final java.io.ObjectInputStream.BlockDataInputStream bin;

    {
        bin = null;
    }

    private boolean closed;

    private java.io.SerialCallbackContext curContext;

    private boolean defaultDataEnd = false;

    private int depth;

    private final boolean enableOverride;

    {
        enableOverride = false;
    }

    private boolean enableResolve;

    private final java.io.ObjectInputStream.HandleTable handles;

    {
        handles = null;
    }

    private int passHandle = -1; // 0xffffffff

    private static final java.util.HashMap<java.lang.String, java.lang.Class<?>> primClasses;

    static {
        primClasses = null;
    }

    private byte[] primVals;

    private static final java.lang.Object unsharedMarker;

    static {
        unsharedMarker = null;
    }

    private final java.io.ObjectInputStream.ValidationList vlist;

    {
        vlist = null;
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private class BlockDataInputStream extends java.io.InputStream implements java.io.DataInput {

        BlockDataInputStream(java.io.InputStream in) {
            throw new RuntimeException("Stub!");
        }

        boolean setBlockDataMode(boolean newmode) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        boolean getBlockDataMode() {
            throw new RuntimeException("Stub!");
        }

        void skipBlockData() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private int readBlockHeader(boolean canBlock) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private void refill() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        int currentBlockRemaining() {
            throw new RuntimeException("Stub!");
        }

        int peek() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        byte peekByte() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int read() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int read(byte[] b, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public long skip(long len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int available() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public void close() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        int read(byte[] b, int off, int len, boolean copy) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public void readFully(byte[] b) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public void readFully(byte[] b, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public void readFully(byte[] b, int off, int len, boolean copy) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int skipBytes(int n) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public boolean readBoolean() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public byte readByte() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int readUnsignedByte() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public char readChar() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public short readShort() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int readUnsignedShort() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int readInt() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public float readFloat() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public long readLong() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public double readDouble() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.String readUTF() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.String readLine() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readBooleans(boolean[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readChars(char[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readShorts(short[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readInts(int[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readFloats(float[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readLongs(long[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readDoubles(double[] v, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        java.lang.String readLongUTF() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.String readUTFBody(long utflen) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private long readUTFSpan(java.lang.StringBuilder sbuf, long utflen)
                throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private int readUTFChar(java.lang.StringBuilder sbuf, long utflen)
                throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        long getBytesRead() {
            throw new RuntimeException("Stub!");
        }

        private static final int CHAR_BUF_SIZE = 256; // 0x100

        private static final int HEADER_BLOCKED = -2; // 0xfffffffe

        private static final int MAX_BLOCK_SIZE = 1024; // 0x400

        private static final int MAX_HEADER_SIZE = 5; // 0x5

        private boolean blkmode = false;

        private final byte[] buf;

        {
            buf = new byte[0];
        }

        private final char[] cbuf;

        {
            cbuf = new char[0];
        }

        private final java.io.DataInputStream din;

        {
            din = null;
        }

        private int end = -1; // 0xffffffff

        private final byte[] hbuf;

        {
            hbuf = new byte[0];
        }

        private final java.io.ObjectInputStream.PeekInputStream in;

        {
            in = null;
        }

        private int pos = 0; // 0x0

        private int unread = 0; // 0x0
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private static class Caches {

        private Caches() {
            throw new RuntimeException("Stub!");
        }

        static final java.util.concurrent.ConcurrentMap<
                        java.io.ObjectStreamClass.WeakClassKey, java.lang.Boolean>
                subclassAudits;

        static {
            subclassAudits = null;
        }

        static final java.lang.ref.ReferenceQueue<java.lang.Class<?>> subclassAuditsQueue;

        static {
            subclassAuditsQueue = null;
        }
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    public abstract static class GetField {

        public GetField() {
            throw new RuntimeException("Stub!");
        }

        public abstract java.io.ObjectStreamClass getObjectStreamClass();

        public abstract boolean defaulted(java.lang.String name) throws java.io.IOException;

        public abstract boolean get(java.lang.String name, boolean val) throws java.io.IOException;

        public abstract byte get(java.lang.String name, byte val) throws java.io.IOException;

        public abstract char get(java.lang.String name, char val) throws java.io.IOException;

        public abstract short get(java.lang.String name, short val) throws java.io.IOException;

        public abstract int get(java.lang.String name, int val) throws java.io.IOException;

        public abstract long get(java.lang.String name, long val) throws java.io.IOException;

        public abstract float get(java.lang.String name, float val) throws java.io.IOException;

        public abstract double get(java.lang.String name, double val) throws java.io.IOException;

        public abstract java.lang.Object get(java.lang.String name, java.lang.Object val)
                throws java.io.IOException;
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private class GetFieldImpl extends java.io.ObjectInputStream.GetField {

        GetFieldImpl(java.io.ObjectStreamClass desc) {
            throw new RuntimeException("Stub!");
        }

        public java.io.ObjectStreamClass getObjectStreamClass() {
            throw new RuntimeException("Stub!");
        }

        public boolean defaulted(java.lang.String name) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public boolean get(java.lang.String name, boolean val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public byte get(java.lang.String name, byte val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public char get(java.lang.String name, char val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public short get(java.lang.String name, short val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int get(java.lang.String name, int val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public float get(java.lang.String name, float val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public long get(java.lang.String name, long val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public double get(java.lang.String name, double val) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.Object get(java.lang.String name, java.lang.Object val)
                throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readFields() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        private int getFieldOffset(java.lang.String name, java.lang.Class<?> type) {
            throw new RuntimeException("Stub!");
        }

        private final java.io.ObjectStreamClass desc;

        {
            desc = null;
        }

        private final int[] objHandles;

        {
            objHandles = new int[0];
        }

        private final java.lang.Object[] objVals;

        {
            objVals = new java.lang.Object[0];
        }

        private final byte[] primVals;

        {
            primVals = new byte[0];
        }
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private static class HandleTable {

        HandleTable(int initialCapacity) {
            throw new RuntimeException("Stub!");
        }

        int assign(java.lang.Object obj) {
            throw new RuntimeException("Stub!");
        }

        void markDependency(int dependent, int target) {
            throw new RuntimeException("Stub!");
        }

        void markException(int handle, java.lang.ClassNotFoundException ex) {
            throw new RuntimeException("Stub!");
        }

        void finish(int handle) {
            throw new RuntimeException("Stub!");
        }

        void setObject(int handle, java.lang.Object obj) {
            throw new RuntimeException("Stub!");
        }

        java.lang.Object lookupObject(int handle) {
            throw new RuntimeException("Stub!");
        }

        java.lang.ClassNotFoundException lookupException(int handle) {
            throw new RuntimeException("Stub!");
        }

        void clear() {
            throw new RuntimeException("Stub!");
        }

        int size() {
            throw new RuntimeException("Stub!");
        }

        private void grow() {
            throw new RuntimeException("Stub!");
        }

        private static final byte STATUS_EXCEPTION = 3; // 0x3

        private static final byte STATUS_OK = 1; // 0x1

        private static final byte STATUS_UNKNOWN = 2; // 0x2

        java.io.ObjectInputStream.HandleTable.HandleList[] deps;

        java.lang.Object[] entries;

        int lowDep = -1; // 0xffffffff

        int size = 0; // 0x0

        byte[] status;

        @SuppressWarnings({"unchecked", "deprecation", "all"})
        private static class HandleList {

            public HandleList() {
                throw new RuntimeException("Stub!");
            }

            public void add(int handle) {
                throw new RuntimeException("Stub!");
            }

            public int get(int index) {
                throw new RuntimeException("Stub!");
            }

            public int size() {
                throw new RuntimeException("Stub!");
            }

            private int[] list;

            private int size = 0; // 0x0
        }
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private static class PeekInputStream extends java.io.InputStream {

        PeekInputStream(java.io.InputStream in) {
            throw new RuntimeException("Stub!");
        }

        int peek() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int read() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int read(byte[] b, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        void readFully(byte[] b, int off, int len) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public long skip(long n) throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public int available() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public void close() throws java.io.IOException {
            throw new RuntimeException("Stub!");
        }

        public long getBytesRead() {
            throw new RuntimeException("Stub!");
        }

        private final java.io.InputStream in;

        {
            in = null;
        }

        private int peekb = -1; // 0xffffffff

        private long totalBytesRead = 0; // 0x0
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    private static class ValidationList {

        ValidationList() {
            throw new RuntimeException("Stub!");
        }

        void register(java.io.ObjectInputValidation obj, int priority)
                throws java.io.InvalidObjectException {
            throw new RuntimeException("Stub!");
        }

        void doCallbacks() throws java.io.InvalidObjectException {
            throw new RuntimeException("Stub!");
        }

        public void clear() {
            throw new RuntimeException("Stub!");
        }

        private java.io.ObjectInputStream.ValidationList.Callback list;

        @SuppressWarnings({"unchecked", "deprecation", "all"})
        private static class Callback {

            Callback(
                    java.io.ObjectInputValidation obj,
                    int priority,
                    java.io.ObjectInputStream.ValidationList.Callback next,
                    java.security.AccessControlContext acc) {
                throw new RuntimeException("Stub!");
            }

            final java.security.AccessControlContext acc;

            {
                acc = null;
            }

            java.io.ObjectInputStream.ValidationList.Callback next;

            final java.io.ObjectInputValidation obj;

            {
                obj = null;
            }

            final int priority;

            {
                priority = 0;
            }
        }
    }
}