import { JavaClass, BasicOrJavaType } from "java-bridge"; import { IntConsumer as java_util_function_IntConsumer } from "./function/IntConsumer"; import { Consumer as java_util_function_Consumer } from "./function/Consumer"; /** * This class just defines types, you should import PrimitiveIterator$OfInt instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class PrimitiveIterator$OfIntClass extends JavaClass { /** * @return original return type: 'java.lang.Object' */ next(): Promise; /** * @return original return type: 'java.lang.Object' */ nextSync(): BasicOrJavaType | null; /** * @return original return type: 'java.lang.Integer' */ next(): Promise; /** * @return original return type: 'java.lang.Integer' */ nextSync(): number | null; /** * @return original return type: 'int' */ nextInt(): Promise; /** * @return original return type: 'int' */ nextIntSync(): number; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'void' */ forEachRemaining(var0: java_util_function_IntConsumer | null): Promise; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'void' */ forEachRemainingSync(var0: java_util_function_IntConsumer | null): void; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ forEachRemaining(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ forEachRemainingSync(var0: BasicOrJavaType | null): void; /** * @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; /** * @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; } declare const PrimitiveIterator$OfInt_base: typeof PrimitiveIterator$OfIntClass; /** * Class java.util.PrimitiveIterator$OfInt. * * This actually imports the java class for further use. * The class PrimitiveIterator$OfIntClass 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 PrimitiveIterator$OfInt extends PrimitiveIterator$OfInt_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default PrimitiveIterator$OfInt; //# sourceMappingURL=PrimitiveIterator$OfInt.d.ts.map