summaryrefslogtreecommitdiff
path: root/ojluni/annotations/hiddenapi/java/lang/invoke/MethodHandles.java
blob: d89c2a1443cdb8643f3b7f976afc0e2ed1eb2db1 (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
/*
 * Copyright (c) 2008, 2017, 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.lang.invoke;

import android.compat.annotation.UnsupportedAppUsage;

@SuppressWarnings({"unchecked", "deprecation", "all"})
public class MethodHandles {

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

    public static java.lang.invoke.MethodHandles.Lookup lookup() {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandles.Lookup publicLookup() {
        throw new RuntimeException("Stub!");
    }

    public static <T extends java.lang.reflect.Member> T reflectAs(
            java.lang.Class<T> expected, java.lang.invoke.MethodHandle target) {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.invoke.MethodHandleImpl getMethodHandleImpl(
            java.lang.invoke.MethodHandle target) {
        throw new RuntimeException("Stub!");
    }

    private static void checkClassIsArray(java.lang.Class<?> c) {
        throw new RuntimeException("Stub!");
    }

    private static void checkTypeIsViewable(java.lang.Class<?> componentType) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle arrayElementGetter(java.lang.Class<?> arrayClass)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    public static byte arrayElementGetter(byte[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static boolean arrayElementGetter(boolean[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static char arrayElementGetter(char[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static short arrayElementGetter(short[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static int arrayElementGetter(int[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static long arrayElementGetter(long[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static float arrayElementGetter(float[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static double arrayElementGetter(double[] array, int i) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle arrayElementSetter(java.lang.Class<?> arrayClass)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(byte[] array, int i, byte val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(boolean[] array, int i, boolean val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(char[] array, int i, char val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(short[] array, int i, short val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(int[] array, int i, int val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(long[] array, int i, long val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(float[] array, int i, float val) {
        throw new RuntimeException("Stub!");
    }

    public static void arrayElementSetter(double[] array, int i, double val) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.VarHandle arrayElementVarHandle(java.lang.Class<?> arrayClass)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.VarHandle byteArrayViewVarHandle(
            java.lang.Class<?> viewArrayClass, java.nio.ByteOrder byteOrder)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.VarHandle byteBufferViewVarHandle(
            java.lang.Class<?> viewArrayClass, java.nio.ByteOrder byteOrder)
            throws java.lang.IllegalArgumentException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle spreadInvoker(
            java.lang.invoke.MethodType type, int leadingArgCount) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle exactInvoker(java.lang.invoke.MethodType type) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle invoker(java.lang.invoke.MethodType type) {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.invoke.MethodHandle methodHandleForVarHandleAccessor(
            java.lang.invoke.VarHandle.AccessMode accessMode,
            java.lang.invoke.MethodType type,
            boolean isExactInvoker) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle varHandleExactInvoker(
            java.lang.invoke.VarHandle.AccessMode accessMode, java.lang.invoke.MethodType type) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle varHandleInvoker(
            java.lang.invoke.VarHandle.AccessMode accessMode, java.lang.invoke.MethodType type) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle explicitCastArguments(
            java.lang.invoke.MethodHandle target, java.lang.invoke.MethodType newType) {
        throw new RuntimeException("Stub!");
    }

    private static void explicitCastArgumentsChecks(
            java.lang.invoke.MethodHandle target, java.lang.invoke.MethodType newType) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle permuteArguments(
            java.lang.invoke.MethodHandle target,
            java.lang.invoke.MethodType newType,
            int... reorder) {
        throw new RuntimeException("Stub!");
    }

    private static boolean permuteArgumentChecks(
            int[] reorder,
            java.lang.invoke.MethodType newType,
            java.lang.invoke.MethodType oldType) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle constant(
            java.lang.Class<?> type, java.lang.Object value) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle identity(java.lang.Class<?> type) {
        throw new RuntimeException("Stub!");
    }

    public static byte identity(byte val) {
        throw new RuntimeException("Stub!");
    }

    public static boolean identity(boolean val) {
        throw new RuntimeException("Stub!");
    }

    public static char identity(char val) {
        throw new RuntimeException("Stub!");
    }

    public static short identity(short val) {
        throw new RuntimeException("Stub!");
    }

    public static int identity(int val) {
        throw new RuntimeException("Stub!");
    }

    public static long identity(long val) {
        throw new RuntimeException("Stub!");
    }

    public static float identity(float val) {
        throw new RuntimeException("Stub!");
    }

    public static double identity(double val) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle insertArguments(
            java.lang.invoke.MethodHandle target, int pos, java.lang.Object... values) {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.Class<?>[] insertArgumentsChecks(
            java.lang.invoke.MethodHandle target, int insCount, int pos)
            throws java.lang.RuntimeException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle dropArguments(
            java.lang.invoke.MethodHandle target,
            int pos,
            java.util.List<java.lang.Class<?>> valueTypes) {
        throw new RuntimeException("Stub!");
    }

    private static java.util.List<java.lang.Class<?>> copyTypes(
            java.util.List<java.lang.Class<?>> types) {
        throw new RuntimeException("Stub!");
    }

    private static int dropArgumentChecks(
            java.lang.invoke.MethodType oldType,
            int pos,
            java.util.List<java.lang.Class<?>> valueTypes) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle dropArguments(
            java.lang.invoke.MethodHandle target, int pos, java.lang.Class<?>... valueTypes) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle filterArguments(
            java.lang.invoke.MethodHandle target,
            int pos,
            java.lang.invoke.MethodHandle... filters) {
        throw new RuntimeException("Stub!");
    }

    private static void filterArgumentsCheckArity(
            java.lang.invoke.MethodHandle target,
            int pos,
            java.lang.invoke.MethodHandle[] filters) {
        throw new RuntimeException("Stub!");
    }

    private static void filterArgumentChecks(
            java.lang.invoke.MethodHandle target, int pos, java.lang.invoke.MethodHandle filter)
            throws java.lang.RuntimeException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle collectArguments(
            java.lang.invoke.MethodHandle target, int pos, java.lang.invoke.MethodHandle filter) {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.invoke.MethodType collectArgumentsChecks(
            java.lang.invoke.MethodHandle target, int pos, java.lang.invoke.MethodHandle filter)
            throws java.lang.RuntimeException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle filterReturnValue(
            java.lang.invoke.MethodHandle target, java.lang.invoke.MethodHandle filter) {
        throw new RuntimeException("Stub!");
    }

    private static void filterReturnValueChecks(
            java.lang.invoke.MethodType targetType, java.lang.invoke.MethodType filterType)
            throws java.lang.RuntimeException {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle foldArguments(
            java.lang.invoke.MethodHandle target, java.lang.invoke.MethodHandle combiner) {
        throw new RuntimeException("Stub!");
    }

    private static java.lang.Class<?> foldArgumentChecks(
            int foldPos,
            java.lang.invoke.MethodType targetType,
            java.lang.invoke.MethodType combinerType) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle guardWithTest(
            java.lang.invoke.MethodHandle test,
            java.lang.invoke.MethodHandle target,
            java.lang.invoke.MethodHandle fallback) {
        throw new RuntimeException("Stub!");
    }

    static java.lang.RuntimeException misMatchedTypes(
            java.lang.String what, java.lang.invoke.MethodType t1, java.lang.invoke.MethodType t2) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle catchException(
            java.lang.invoke.MethodHandle target,
            java.lang.Class<? extends java.lang.Throwable> exType,
            java.lang.invoke.MethodHandle handler) {
        throw new RuntimeException("Stub!");
    }

    public static java.lang.invoke.MethodHandle throwException(
            java.lang.Class<?> returnType, java.lang.Class<? extends java.lang.Throwable> exType) {
        throw new RuntimeException("Stub!");
    }

    @SuppressWarnings({"unchecked", "deprecation", "all"})
    public static final class Lookup {

        Lookup(java.lang.Class<?> lookupClass) {
            throw new RuntimeException("Stub!");
        }

        @UnsupportedAppUsage
        private Lookup(java.lang.Class<?> lookupClass, int allowedModes) {
            throw new RuntimeException("Stub!");
        }

        private static int fixmods(int mods) {
            throw new RuntimeException("Stub!");
        }

        public java.lang.Class<?> lookupClass() {
            throw new RuntimeException("Stub!");
        }

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

        public java.lang.invoke.MethodHandles.Lookup in(java.lang.Class<?> requestedLookupClass) {
            throw new RuntimeException("Stub!");
        }

        private static void checkUnprivilegedlookupClass(
                java.lang.Class<?> lookupClass, int allowedModes) {
            throw new RuntimeException("Stub!");
        }

        public java.lang.String toString() {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findStatic(
                java.lang.Class<?> refc, java.lang.String name, java.lang.invoke.MethodType type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle findVirtualForMH(
                java.lang.String name, java.lang.invoke.MethodType type) {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle findVirtualForVH(
                java.lang.String name, java.lang.invoke.MethodType type) {
            throw new RuntimeException("Stub!");
        }

        private static java.lang.invoke.MethodHandle createMethodHandle(
                java.lang.reflect.Method method,
                int handleKind,
                java.lang.invoke.MethodType methodType) {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findVirtual(
                java.lang.Class<?> refc, java.lang.String name, java.lang.invoke.MethodType type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findConstructor(
                java.lang.Class<?> refc, java.lang.invoke.MethodType type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle createMethodHandleForConstructor(
                java.lang.reflect.Constructor constructor) {
            throw new RuntimeException("Stub!");
        }

        private static java.lang.invoke.MethodType initMethodType(
                java.lang.invoke.MethodType constructorType) {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findSpecial(
                java.lang.Class<?> refc,
                java.lang.String name,
                java.lang.invoke.MethodType type,
                java.lang.Class<?> specialCaller)
                throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle findSpecial(
                java.lang.reflect.Method method,
                java.lang.invoke.MethodType type,
                java.lang.Class<?> refc,
                java.lang.Class<?> specialCaller)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findGetter(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle findAccessor(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type, int kind)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.invoke.MethodHandle findAccessor(
                java.lang.reflect.Field field,
                java.lang.Class<?> refc,
                java.lang.Class<?> type,
                int kind,
                boolean performAccessChecks)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findSetter(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.VarHandle findVarHandle(
                java.lang.Class<?> recv, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        private java.lang.reflect.Field findFieldOfType(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        private void commonFieldChecks(
                java.lang.reflect.Field field,
                java.lang.Class<?> refc,
                java.lang.Class<?> type,
                boolean isStatic,
                boolean performAccessChecks)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findStaticGetter(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle findStaticSetter(
                java.lang.Class<?> refc, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.VarHandle findStaticVarHandle(
                java.lang.Class<?> decl, java.lang.String name, java.lang.Class<?> type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchFieldException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle bind(
                java.lang.Object receiver, java.lang.String name, java.lang.invoke.MethodType type)
                throws java.lang.IllegalAccessException, java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle unreflect(java.lang.reflect.Method m)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle unreflectSpecial(
                java.lang.reflect.Method m, java.lang.Class<?> specialCaller)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle unreflectConstructor(
                java.lang.reflect.Constructor<?> c) throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle unreflectGetter(java.lang.reflect.Field f)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandle unreflectSetter(java.lang.reflect.Field f)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.VarHandle unreflectVarHandle(java.lang.reflect.Field f)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        public java.lang.invoke.MethodHandleInfo revealDirect(
                java.lang.invoke.MethodHandle target) {
            throw new RuntimeException("Stub!");
        }

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

        void checkAccess(
                java.lang.Class<?> refc,
                java.lang.Class<?> defc,
                int mods,
                java.lang.String methName)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        java.lang.String accessFailedMessage(
                java.lang.Class<?> refc, java.lang.Class<?> defc, int mods) {
            throw new RuntimeException("Stub!");
        }

        private void checkSpecialCaller(java.lang.Class<?> specialCaller)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        private void throwMakeAccessException(java.lang.String message, java.lang.Object from)
                throws java.lang.IllegalAccessException {
            throw new RuntimeException("Stub!");
        }

        private void checkReturnType(
                java.lang.reflect.Method method, java.lang.invoke.MethodType methodType)
                throws java.lang.NoSuchMethodException {
            throw new RuntimeException("Stub!");
        }

        private static final int ALL_MODES = 15; // 0xf

        static final java.lang.invoke.MethodHandles.Lookup IMPL_LOOKUP;

        static {
            IMPL_LOOKUP = null;
        }

        public static final int PACKAGE = 8; // 0x8

        public static final int PRIVATE = 2; // 0x2

        public static final int PROTECTED = 4; // 0x4

        public static final int PUBLIC = 1; // 0x1

        static final java.lang.invoke.MethodHandles.Lookup PUBLIC_LOOKUP;

        static {
            PUBLIC_LOOKUP = null;
        }

        private final int allowedModes;

        {
            allowedModes = 0;
        }

        private final java.lang.Class<?> lookupClass;

        {
            lookupClass = null;
        }
    }
}