-
Notifications
You must be signed in to change notification settings - Fork 0
/
javax.lang.model.element.d.ts
428 lines (268 loc) · 9.4 KB
/
javax.lang.model.element.d.ts
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
/// <reference path="java.util.d.ts" />
/// <reference path="java.lang.d.ts" />
/// <reference path="javax.lang.model.d.ts" />
/// <reference path="java.lang.annotation.d.ts" />
/// <reference path="javax.lang.model.type.d.ts" />
declare module '@afterburnerhq/javax.lang.model.element' {
import { Map, List, Set } from '@afterburnerhq/java.util'
import { Enum, CharSequence, Class, String } from '@afterburnerhq/java.lang'
import { AnnotatedConstruct, UnknownEntityException } from '@afterburnerhq/javax.lang.model'
import { Annotation } from '@afterburnerhq/java.lang.annotation'
import { TypeMirror, DeclaredType } from '@afterburnerhq/javax.lang.model.type'
export interface AnnotationMirror {
getAnnotationType(): DeclaredType;
getElementValues(): Map<ExecutableElement, AnnotationValue>;
}
export interface AnnotationValue {
getValue(): Object;
toString(): string;
accept<R extends Object, P extends Object>(arg0: AnnotationValueVisitor<R, P>, arg1: P): R;
}
export interface AnnotationValueVisitor<R extends Object, P extends Object> extends Object {
visit(arg0: AnnotationValue, arg1: P): R;
/* default */ visit(arg0: AnnotationValue): R;
visitBoolean(arg0: boolean, arg1: P): R;
visitByte(arg0: number, arg1: P): R;
visitChar(arg0: String, arg1: P): R;
visitDouble(arg0: number, arg1: P): R;
visitFloat(arg0: number, arg1: P): R;
visitInt(arg0: number, arg1: P): R;
visitLong(arg0: number, arg1: P): R;
visitShort(arg0: number, arg1: P): R;
visitString(arg0: String, arg1: P): R;
visitType(arg0: TypeMirror, arg1: P): R;
visitEnumConstant(arg0: VariableElement, arg1: P): R;
visitAnnotation(arg0: AnnotationMirror, arg1: P): R;
visitArray(arg0: List<AnnotationValue>, arg1: P): R;
visitUnknown(arg0: AnnotationValue, arg1: P): R;
}
export interface Element extends AnnotatedConstruct {
asType(): TypeMirror;
getKind(): ElementKind;
getModifiers(): Set<Modifier>;
getSimpleName(): Name;
getEnclosingElement(): Element;
getEnclosedElements(): List<Element>;
equals(arg0: Object): boolean;
hashCode(): number;
getAnnotationMirrors(): List<AnnotationMirror>;
getAnnotation<A extends Annotation>(arg0: Class<A>): A;
getAnnotationsByType<A extends Annotation>(arg0: Class<A>): A[];
accept<R extends Object, P extends Object>(arg0: ElementVisitor<R, P>, arg1: P): R;
}
export class ElementKind extends Enum<ElementKind> {
static PACKAGE:ElementKind
static ENUM:ElementKind
static CLASS:ElementKind
static ANNOTATION_TYPE:ElementKind
static INTERFACE:ElementKind
static ENUM_CONSTANT:ElementKind
static FIELD:ElementKind
static PARAMETER:ElementKind
static LOCAL_VARIABLE:ElementKind
static EXCEPTION_PARAMETER:ElementKind
static METHOD:ElementKind
static CONSTRUCTOR:ElementKind
static STATIC_INIT:ElementKind
static INSTANCE_INIT:ElementKind
static TYPE_PARAMETER:ElementKind
static OTHER:ElementKind
static RESOURCE_VARIABLE:ElementKind
static MODULE:ElementKind
static RECORD:ElementKind
static RECORD_COMPONENT:ElementKind
static BINDING_VARIABLE:ElementKind
static values(): ElementKind[];
static valueOf(arg0: String): ElementKind;
isClass(): boolean;
isInterface(): boolean;
isField(): boolean;
/**
* DO NOT USE
*/
static valueOf<T extends Enum<T>>(arg0: Class<T>, arg1: String): T;
}
export interface ElementVisitor<R extends Object, P extends Object> extends Object {
visit(arg0: Element, arg1: P): R;
/* default */ visit(arg0: Element): R;
visitPackage(arg0: PackageElement, arg1: P): R;
visitType(arg0: TypeElement, arg1: P): R;
visitVariable(arg0: VariableElement, arg1: P): R;
visitExecutable(arg0: ExecutableElement, arg1: P): R;
visitTypeParameter(arg0: TypeParameterElement, arg1: P): R;
visitUnknown(arg0: Element, arg1: P): R;
/* default */ visitModule(arg0: ModuleElement, arg1: P): R;
/* default */ visitRecordComponent(arg0: RecordComponentElement, arg1: P): R;
}
export interface ExecutableElement extends Element, Parameterizable {
asType(): TypeMirror;
getTypeParameters(): List<TypeParameterElement>;
getReturnType(): TypeMirror;
getParameters(): List<VariableElement>;
getReceiverType(): TypeMirror;
isVarArgs(): boolean;
isDefault(): boolean;
getThrownTypes(): List<TypeMirror>;
getDefaultValue(): AnnotationValue;
getSimpleName(): Name;
}
export class Modifier extends Enum<Modifier> {
static PUBLIC:Modifier
static PROTECTED:Modifier
static PRIVATE:Modifier
static ABSTRACT:Modifier
static DEFAULT:Modifier
static STATIC:Modifier
static SEALED:Modifier
static NON_SEALED:Modifier
static FINAL:Modifier
static TRANSIENT:Modifier
static VOLATILE:Modifier
static SYNCHRONIZED:Modifier
static NATIVE:Modifier
static STRICTFP:Modifier
static values(): Modifier[];
static valueOf(arg0: String): Modifier;
toString(): string;
/**
* DO NOT USE
*/
static valueOf<T extends Enum<T>>(arg0: Class<T>, arg1: String): T;
}
export interface ModuleElement extends Element, QualifiedNameable {
asType(): TypeMirror;
getQualifiedName(): Name;
getSimpleName(): Name;
getEnclosedElements(): List<Element>;
isOpen(): boolean;
isUnnamed(): boolean;
getEnclosingElement(): Element;
getDirectives(): List<ModuleElement.Directive>;
}
export namespace ModuleElement {
export interface Directive {
getKind(): ModuleElement.DirectiveKind;
accept<R extends Object, P extends Object>(arg0: ModuleElement.DirectiveVisitor<R, P>, arg1: P): R;
}
export class DirectiveKind extends Enum<ModuleElement.DirectiveKind> {
static REQUIRES:ModuleElement.DirectiveKind
static EXPORTS:ModuleElement.DirectiveKind
static OPENS:ModuleElement.DirectiveKind
static USES:ModuleElement.DirectiveKind
static PROVIDES:ModuleElement.DirectiveKind
static values(): ModuleElement.DirectiveKind[];
static valueOf(arg0: String): ModuleElement.DirectiveKind;
/**
* DO NOT USE
*/
static valueOf<T extends Enum<T>>(arg0: Class<T>, arg1: String): T;
}
export interface DirectiveVisitor<R extends Object, P extends Object> extends Object {
/* default */ visit(arg0: ModuleElement.Directive): R;
/* default */ visit(arg0: ModuleElement.Directive, arg1: P): R;
visitRequires(arg0: ModuleElement.RequiresDirective, arg1: P): R;
visitExports(arg0: ModuleElement.ExportsDirective, arg1: P): R;
visitOpens(arg0: ModuleElement.OpensDirective, arg1: P): R;
visitUses(arg0: ModuleElement.UsesDirective, arg1: P): R;
visitProvides(arg0: ModuleElement.ProvidesDirective, arg1: P): R;
/* default */ visitUnknown(arg0: ModuleElement.Directive, arg1: P): R;
}
export interface ExportsDirective extends ModuleElement.Directive {
getPackage(): PackageElement;
getTargetModules(): List<ModuleElement>;
}
export interface OpensDirective extends ModuleElement.Directive {
getPackage(): PackageElement;
getTargetModules(): List<ModuleElement>;
}
export interface ProvidesDirective extends ModuleElement.Directive {
getService(): TypeElement;
getImplementations(): List<TypeElement>;
}
export interface RequiresDirective extends ModuleElement.Directive {
isStatic(): boolean;
isTransitive(): boolean;
getDependency(): ModuleElement;
}
export interface UsesDirective extends ModuleElement.Directive {
getService(): TypeElement;
}
}
export interface Name extends CharSequence {
equals(arg0: Object): boolean;
hashCode(): number;
contentEquals(arg0: CharSequence): boolean;
}
export class NestingKind extends Enum<NestingKind> {
static TOP_LEVEL:NestingKind
static MEMBER:NestingKind
static LOCAL:NestingKind
static ANONYMOUS:NestingKind
static values(): NestingKind[];
static valueOf(arg0: String): NestingKind;
isNested(): boolean;
/**
* DO NOT USE
*/
static valueOf<T extends Enum<T>>(arg0: Class<T>, arg1: String): T;
}
export interface PackageElement extends Element, QualifiedNameable {
asType(): TypeMirror;
getQualifiedName(): Name;
getSimpleName(): Name;
getEnclosedElements(): List<Element>;
isUnnamed(): boolean;
getEnclosingElement(): Element;
}
export interface Parameterizable extends Element {
getTypeParameters(): List<TypeParameterElement>;
}
export interface QualifiedNameable extends Element {
getQualifiedName(): Name;
}
export interface RecordComponentElement extends Element {
getEnclosingElement(): Element;
getSimpleName(): Name;
getAccessor(): ExecutableElement;
}
export interface TypeElement extends Element, Parameterizable, QualifiedNameable {
asType(): TypeMirror;
getEnclosedElements(): List<Element>;
getNestingKind(): NestingKind;
getQualifiedName(): Name;
getSimpleName(): Name;
getSuperclass(): TypeMirror;
getInterfaces(): List<TypeMirror>;
getTypeParameters(): List<TypeParameterElement>;
/* default */ getRecordComponents(): List<RecordComponentElement>;
/* default */ getPermittedSubclasses(): List<TypeMirror>;
getEnclosingElement(): Element;
}
export interface TypeParameterElement extends Element {
asType(): TypeMirror;
getGenericElement(): Element;
getBounds(): List<TypeMirror>;
getEnclosingElement(): Element;
}
export class UnknownAnnotationValueException extends UnknownEntityException {
constructor(arg0: AnnotationValue, arg1: Object);
getUnknownAnnotationValue(): AnnotationValue;
getArgument(): Object;
}
export class UnknownDirectiveException extends UnknownEntityException {
constructor(arg0: ModuleElement.Directive, arg1: Object);
getUnknownDirective(): ModuleElement.Directive;
getArgument(): Object;
}
export class UnknownElementException extends UnknownEntityException {
constructor(arg0: Element, arg1: Object);
getUnknownElement(): Element;
getArgument(): Object;
}
export interface VariableElement extends Element {
asType(): TypeMirror;
getConstantValue(): Object;
getSimpleName(): Name;
getEnclosingElement(): Element;
}
}