import { JavaClass } from "java-bridge"; import { Type as java_lang_reflect_Type } from "./Type"; import { GenericDeclaration as java_lang_reflect_GenericDeclaration } from "./GenericDeclaration"; import { AnnotatedType as java_lang_reflect_AnnotatedType } from "./AnnotatedType"; 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 TypeVariable instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class TypeVariableClass extends JavaClass { /** * @return original return type: 'java.lang.reflect.Type[]' */ getBounds(): Promise<(java_lang_reflect_Type | null)[] | null>; /** * @return original return type: 'java.lang.reflect.Type[]' */ getBoundsSync(): (java_lang_reflect_Type | null)[] | null; /** * @return original return type: 'java.lang.reflect.GenericDeclaration' */ getGenericDeclaration(): Promise; /** * @return original return type: 'java.lang.reflect.GenericDeclaration' */ getGenericDeclarationSync(): java_lang_reflect_GenericDeclaration | null; /** * @return original return type: 'java.lang.reflect.AnnotatedType[]' */ getAnnotatedBounds(): Promise<(java_lang_reflect_AnnotatedType | null)[] | null>; /** * @return original return type: 'java.lang.reflect.AnnotatedType[]' */ getAnnotatedBoundsSync(): (java_lang_reflect_AnnotatedType | null)[] | null; /** * @return original return type: 'java.lang.String' */ getName(): Promise; /** * @return original return type: 'java.lang.String' */ getNameSync(): string | null; /** * @return original return type: 'java.lang.String' */ getTypeName(): Promise; /** * @return original return type: 'java.lang.String' */ getTypeNameSync(): string | 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 TypeVariable_base: typeof TypeVariableClass; /** * Class java.lang.reflect.TypeVariable. * * This actually imports the java class for further use. * The class TypeVariableClass 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 TypeVariable extends TypeVariable_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default TypeVariable; //# sourceMappingURL=TypeVariable.d.ts.map