import { JavaClass } from "java-bridge"; import { IntStream as java_util_stream_IntStream } from "./IntStream"; import { Integer as java_lang_Integer } from "./../../lang/Integer"; import { IntConsumer as java_util_function_IntConsumer } from "./../function/IntConsumer"; /** * This class just defines types, you should import IntStream$Builder instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class IntStream$BuilderClass extends JavaClass { /** * @return original return type: 'java.util.stream.IntStream' */ build(): Promise; /** * @return original return type: 'java.util.stream.IntStream' */ buildSync(): java_util_stream_IntStream | null; /** * @param var0 original type: 'int' * @return original return type: 'java.util.stream.IntStream$Builder' */ add(var0: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @return original return type: 'java.util.stream.IntStream$Builder' */ addSync(var0: java_lang_Integer | number): IntStream$Builder | null; /** * @param var0 original type: 'int' * @return original return type: 'void' */ accept(var0: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @return original return type: 'void' */ acceptSync(var0: java_lang_Integer | number): void; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'java.util.function.IntConsumer' */ andThen(var0: java_util_function_IntConsumer | null): Promise; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'java.util.function.IntConsumer' */ andThenSync(var0: java_util_function_IntConsumer | null): java_util_function_IntConsumer | null; } declare const IntStream$Builder_base: typeof IntStream$BuilderClass; /** * Class java.util.stream.IntStream$Builder. * * This actually imports the java class for further use. * The class IntStream$BuilderClass 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 IntStream$Builder extends IntStream$Builder_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default IntStream$Builder; //# sourceMappingURL=IntStream$Builder.d.ts.map