import { JavaClass, BasicOrJavaType } from "java-bridge"; import { Consumer as java_util_function_Consumer } from "./function/Consumer"; /** * This class just defines types, you should import ListIterator instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class ListIteratorClass extends JavaClass { /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ add(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ addSync(var0: BasicOrJavaType | null): void; /** * @return original return type: 'void' */ remove(): Promise; /** * @return original return type: 'void' */ removeSync(): void; /** * @return original return type: 'boolean' */ hasNext(): Promise; /** * @return original return type: 'boolean' */ hasNextSync(): boolean; /** * @return original return type: 'java.lang.Object' */ next(): Promise; /** * @return original return type: 'java.lang.Object' */ nextSync(): BasicOrJavaType | null; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ set(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ setSync(var0: BasicOrJavaType | null): void; /** * @return original return type: 'int' */ previousIndex(): Promise; /** * @return original return type: 'int' */ previousIndexSync(): number; /** * @return original return type: 'boolean' */ hasPrevious(): Promise; /** * @return original return type: 'boolean' */ hasPreviousSync(): boolean; /** * @return original return type: 'java.lang.Object' */ previous(): Promise; /** * @return original return type: 'java.lang.Object' */ previousSync(): BasicOrJavaType | null; /** * @return original return type: 'int' */ nextIndex(): Promise; /** * @return original return type: 'int' */ nextIndexSync(): number; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'void' */ forEachRemaining(var0: java_util_function_Consumer | null): Promise; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'void' */ forEachRemainingSync(var0: java_util_function_Consumer | null): void; } declare const ListIterator_base: typeof ListIteratorClass; /** * Class java.util.ListIterator. * * This actually imports the java class for further use. * The class ListIteratorClass 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 ListIterator extends ListIterator_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default ListIterator; //# sourceMappingURL=ListIterator.d.ts.map