import { JavaClass } from "java-bridge"; import { TypeVariable as java_lang_reflect_TypeVariable } from "./TypeVariable"; import { Annotation as java_lang_annotation_Annotation } from "./../annotation/Annotation"; import { Class as java_lang_Class } from "./../Class"; /** * This class just defines types, you should import GenericDeclaration instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class GenericDeclarationClass extends JavaClass { /** * @return original return type: 'java.lang.reflect.TypeVariable[]' */ getTypeParameters(): Promise<(java_lang_reflect_TypeVariable | null)[] | null>; /** * @return original return type: 'java.lang.reflect.TypeVariable[]' */ getTypeParametersSync(): (java_lang_reflect_TypeVariable | null)[] | null; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation' */ getAnnotation(var0: java_lang_Class | null): Promise; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation' */ getAnnotationSync(var0: java_lang_Class | null): java_lang_annotation_Annotation | null; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'boolean' */ isAnnotationPresent(var0: java_lang_Class | null): Promise; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'boolean' */ isAnnotationPresentSync(var0: java_lang_Class | null): boolean; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation[]' */ getAnnotationsByType(var0: java_lang_Class | null): Promise<(java_lang_annotation_Annotation | null)[] | null>; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation[]' */ getAnnotationsByTypeSync(var0: java_lang_Class | null): (java_lang_annotation_Annotation | null)[] | null; /** * @return original return type: 'java.lang.annotation.Annotation[]' */ getAnnotations(): Promise<(java_lang_annotation_Annotation | null)[] | null>; /** * @return original return type: 'java.lang.annotation.Annotation[]' */ getAnnotationsSync(): (java_lang_annotation_Annotation | null)[] | null; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation' */ getDeclaredAnnotation(var0: java_lang_Class | null): Promise; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation' */ getDeclaredAnnotationSync(var0: java_lang_Class | null): java_lang_annotation_Annotation | null; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation[]' */ getDeclaredAnnotationsByType(var0: java_lang_Class | null): Promise<(java_lang_annotation_Annotation | null)[] | null>; /** * @param var0 original type: 'java.lang.Class' * @return original return type: 'java.lang.annotation.Annotation[]' */ getDeclaredAnnotationsByTypeSync(var0: java_lang_Class | null): (java_lang_annotation_Annotation | null)[] | null; /** * @return original return type: 'java.lang.annotation.Annotation[]' */ getDeclaredAnnotations(): Promise<(java_lang_annotation_Annotation | null)[] | null>; /** * @return original return type: 'java.lang.annotation.Annotation[]' */ getDeclaredAnnotationsSync(): (java_lang_annotation_Annotation | null)[] | null; } declare const GenericDeclaration_base: typeof GenericDeclarationClass; /** * Class java.lang.reflect.GenericDeclaration. * * This actually imports the java class for further use. * The class GenericDeclarationClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class GenericDeclaration extends GenericDeclaration_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default GenericDeclaration; //# sourceMappingURL=GenericDeclaration.d.ts.map