import { JavaClass, BasicOrJavaType } from "java-bridge"; import { FileTime as java_nio_file_attribute_FileTime } from "./FileTime"; /** * This class just defines types, you should import BasicFileAttributes instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class BasicFileAttributesClass extends JavaClass { /** * @return original return type: 'boolean' */ isSymbolicLink(): Promise; /** * @return original return type: 'boolean' */ isSymbolicLinkSync(): boolean; /** * @return original return type: 'boolean' */ isRegularFile(): Promise; /** * @return original return type: 'boolean' */ isRegularFileSync(): boolean; /** * @return original return type: 'boolean' */ isOther(): Promise; /** * @return original return type: 'boolean' */ isOtherSync(): boolean; /** * @return original return type: 'java.lang.Object' */ fileKey(): Promise; /** * @return original return type: 'java.lang.Object' */ fileKeySync(): BasicOrJavaType | null; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ lastModifiedTime(): Promise; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ lastModifiedTimeSync(): java_nio_file_attribute_FileTime | null; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ lastAccessTime(): Promise; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ lastAccessTimeSync(): java_nio_file_attribute_FileTime | null; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ creationTime(): Promise; /** * @return original return type: 'java.nio.file.attribute.FileTime' */ creationTimeSync(): java_nio_file_attribute_FileTime | null; /** * @return original return type: 'long' */ size(): Promise; /** * @return original return type: 'long' */ sizeSync(): number; /** * @return original return type: 'boolean' */ isDirectory(): Promise; /** * @return original return type: 'boolean' */ isDirectorySync(): boolean; } declare const BasicFileAttributes_base: typeof BasicFileAttributesClass; /** * Class java.nio.file.attribute.BasicFileAttributes. * * This actually imports the java class for further use. * The class BasicFileAttributesClass 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 BasicFileAttributes extends BasicFileAttributes_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default BasicFileAttributes; //# sourceMappingURL=BasicFileAttributes.d.ts.map