import { JavaClass, BasicOrJavaType } from "java-bridge"; import { Class as java_lang_Class } from "./../Class"; /** * This class just defines types, you should import Annotation instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class AnnotationClass extends JavaClass { /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ equals(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ equalsSync(var0: BasicOrJavaType | null): boolean; /** * @return original return type: 'java.lang.String' */ toString(): Promise; /** * @return original return type: 'java.lang.String' */ toStringSync(): string; /** * @return original return type: 'int' */ hashCode(): Promise; /** * @return original return type: 'int' */ hashCodeSync(): number; /** * @return original return type: 'java.lang.Class' */ annotationType(): Promise; /** * @return original return type: 'java.lang.Class' */ annotationTypeSync(): java_lang_Class | null; } declare const Annotation_base: typeof AnnotationClass; /** * Class java.lang.annotation.Annotation. * * This actually imports the java class for further use. * The class AnnotationClass 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 Annotation extends Annotation_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default Annotation; //# sourceMappingURL=Annotation.d.ts.map