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