import { JavaClass, BasicOrJavaType } from "java-bridge"; import { UserPrincipal as java_nio_file_attribute_UserPrincipal } from "./UserPrincipal"; import { GroupPrincipal as java_nio_file_attribute_GroupPrincipal } from "./GroupPrincipal"; import { Long as java_lang_Long } from "./../../../lang/Long"; import { Integer as java_lang_Integer } from "./../../../lang/Integer"; import { Class as java_lang_Class } from "./../../../lang/Class"; /** * This class just defines types, you should import UserPrincipalLookupService instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class UserPrincipalLookupServiceClass extends JavaClass { /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.nio.file.attribute.UserPrincipal' */ lookupPrincipalByName(var0: string | null): Promise; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.nio.file.attribute.UserPrincipal' */ lookupPrincipalByNameSync(var0: string | null): java_nio_file_attribute_UserPrincipal | null; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.nio.file.attribute.GroupPrincipal' */ lookupPrincipalByGroupName(var0: string | null): Promise; /** * @param var0 original type: 'java.lang.String' * @return original return type: 'java.nio.file.attribute.GroupPrincipal' */ lookupPrincipalByGroupNameSync(var0: string | null): java_nio_file_attribute_GroupPrincipal | null; /** * @param var0 original type: 'long' * @param var1 original type: 'int' * @return original return type: 'void' */ wait(var0: java_lang_Long | bigint | number, var1: java_lang_Integer | number): Promise; /** * @param var0 original type: 'long' * @param var1 original type: 'int' * @return original return type: 'void' */ waitSync(var0: java_lang_Long | bigint | number, var1: java_lang_Integer | number): void; /** * @param var0 original type: 'long' * @return original return type: 'void' */ wait(var0: java_lang_Long | bigint | number): Promise; /** * @param var0 original type: 'long' * @return original return type: 'void' */ waitSync(var0: java_lang_Long | bigint | number): void; /** * @return original return type: 'void' */ wait(): Promise; /** * @return original return type: 'void' */ waitSync(): void; /** * @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' */ getClass(): Promise; /** * @return original return type: 'java.lang.Class' */ getClassSync(): java_lang_Class; /** * @return original return type: 'void' */ notify(): Promise; /** * @return original return type: 'void' */ notifySync(): void; /** * @return original return type: 'void' */ notifyAll(): Promise; /** * @return original return type: 'void' */ notifyAllSync(): void; } declare const UserPrincipalLookupService_base: typeof UserPrincipalLookupServiceClass; /** * Class java.nio.file.attribute.UserPrincipalLookupService. * * This actually imports the java class for further use. * The class UserPrincipalLookupServiceClass 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 UserPrincipalLookupService extends UserPrincipalLookupService_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default UserPrincipalLookupService; //# sourceMappingURL=UserPrincipalLookupService.d.ts.map